aletheiadb 0.1.0

A high-performance bi-temporal graph database for LLM integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chronos — Benchmark Report</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/4.4.1/chart.umd.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chartjs-adapter-date-fns/3.0.0/chartjs-adapter-date-fns.bundle.min.js"></script>
<style>
  @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

  :root {
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-tertiary: #1a2235;
    --bg-card: #151d2e;
    --border: #1e293b;
    --border-bright: #334155;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-cyan: #22d3ee;
    --accent-green: #34d399;
    --accent-red: #f87171;
    --accent-yellow: #fbbf24;
    --accent-purple: #a78bfa;
    --accent-orange: #fb923c;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }

  /* ─── Header ─── */
  header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .header-top {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: -0.02em;
  }

  .header-icon {
    font-size: 1.5rem;
  }

  .meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .meta-label {
    color: var(--text-secondary);
  }

  /* ─── Verdict Banner ─── */
  .verdict {
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid;
  }

  .verdict-critical {
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.3);
  }
  .verdict-warn {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
  }
  .verdict-good {
    background: rgba(52, 211, 153, 0.08);
    border-color: rgba(52, 211, 153, 0.3);
  }
  .verdict-neutral {
    background: rgba(148, 163, 184, 0.06);
    border-color: rgba(148, 163, 184, 0.2);
  }

  .verdict h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .verdict p {
    color: var(--text-secondary);
    font-size: 0.9rem;
  }

  /* ─── Stats Row ─── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
  }

  .stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem;
    font-weight: 700;
  }

  .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
  }

  .stat-improved .stat-value { color: var(--accent-green); }
  .stat-regressed .stat-value { color: var(--accent-red); }
  .stat-stable .stat-value { color: var(--accent-yellow); }
  .stat-new .stat-value { color: var(--accent-purple); }
  .stat-total .stat-value { color: var(--accent-cyan); }

  /* ─── Section Headers ─── */
  .section-header {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* ─── Table ─── */
  .table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border);
  }

  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }

  thead th {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    text-align: left;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-bright);
    position: sticky;
    top: 0;
  }

  thead th.numeric,
  thead th.change,
  thead th.status-cell {
    text-align: right;
  }

  td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }

  tr:hover td {
    background: rgba(255, 255, 255, 0.02);
  }

  .bench-name {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.85rem;
  }

  .numeric {
    font-family: 'JetBrains Mono', monospace;
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.85rem;
  }

  .change {
    font-family: 'JetBrains Mono', monospace;
    text-align: right;
    font-weight: 600;
    font-size: 0.85rem;
  }

  .status-cell {
    text-align: right;
    font-size: 1rem;
  }

  .row-improved .change { color: var(--accent-green); }
  .row-regressed .change { color: var(--accent-red); }
  .row-critical .change { color: var(--accent-red); font-weight: 700; }
  .row-stable .change { color: var(--text-muted); }
  .row-new .change { color: var(--accent-purple); }

  .row-critical {
    background: rgba(248, 113, 113, 0.05);
  }
  .row-improved {
    background: rgba(52, 211, 153, 0.03);
  }

  /* ─── Chart ─── */
  .chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .chart-canvas-wrap {
    position: relative;
    height: 400px;
  }

  /* ─── Footer ─── */
  footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
  }

  footer a {
    color: var(--accent-cyan);
    text-decoration: none;
  }

  /* ─── Responsive ─── */
  @media (max-width: 640px) {
    .container { padding: 1rem; }
    h1 { font-size: 1.25rem; }
    .meta { flex-direction: column; gap: 0.5rem; }
    .chart-canvas-wrap { height: 280px; }
  }
</style>
</head>
<body>

<div class="container">
  <header>
    <div class="header-top">
      <span class="header-icon">⏱</span>
      <h1>CHRONOS</h1>
    </div>
    <div class="meta">
      <span><span class="meta-label">commit</span> dc19c58</span>
      <span><span class="meta-label">branch</span> jules-10636708643017105327-54e0d64f</span>
      <span><span class="meta-label">generated</span> 2026-03-15 02:35 UTC</span>
      <span><span class="meta-label">history</span> 6 runs</span>
    </div>
  </header>

  <div class="verdict verdict-neutral">
    <h2>➖ No Significant Changes</h2>
    <p>All benchmarks within noise threshold.</p>
  </div>

  <div class="stats-row">
    <div class="stat-card stat-total">
      <div class="stat-value">103</div>
      <div class="stat-label">Total</div>
    </div>
    <div class="stat-card stat-improved">
      <div class="stat-value">0</div>
      <div class="stat-label">Improved</div>
    </div>
    <div class="stat-card stat-stable">
      <div class="stat-value">103</div>
      <div class="stat-label">Stable</div>
    </div>
    <div class="stat-card stat-regressed">
      <div class="stat-value">0</div>
      <div class="stat-label">Regressed</div>
    </div>
    <div class="stat-card stat-new">
      <div class="stat-value">0</div>
      <div class="stat-label">New</div>
    </div>
  </div>

  <div class="section-header">Benchmark Results</div>
  <div class="table-wrapper">
    <table>
      <thead>
        <tr>
          <th>Benchmark</th>
          <th class="numeric">Previous</th>
          <th class="numeric">Current</th>
          <th class="change">Change</th>
          <th class="status-cell">Status</th>
        </tr>
      </thead>
      <tbody>

        <tr class="row-stable">
            <td class="bench-name">3_hop_traversal</td>
            <td class="numeric">50.50 µs</td>
            <td class="numeric">50.50 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_3_hop_traversal</td>
            <td class="numeric">491.0 ns</td>
            <td class="numeric">491.0 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_batch/batch_node_creation/10</td>
            <td class="numeric">29.94 ms</td>
            <td class="numeric">29.94 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_batch/batch_node_creation/100</td>
            <td class="numeric">320.78 ms</td>
            <td class="numeric">320.78 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_batch/batch_node_creation/1000</td>
            <td class="numeric">3.243 s</td>
            <td class="numeric">3.243 s</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_edge_creation</td>
            <td class="numeric">97.44 µs</td>
            <td class="numeric">97.44 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_fast_path/node_lookup/100</td>
            <td class="numeric">55.7 ns</td>
            <td class="numeric">55.7 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_fast_path/node_lookup/1000</td>
            <td class="numeric">62.2 ns</td>
            <td class="numeric">62.2 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_fast_path/node_lookup/10000</td>
            <td class="numeric">61.5 ns</td>
            <td class="numeric">61.5 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_historical_stats</td>
            <td class="numeric">943.7 ns</td>
            <td class="numeric">943.7 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_in_degree</td>
            <td class="numeric">93.7 ns</td>
            <td class="numeric">93.7 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_labeled_traversal</td>
            <td class="numeric">157.2 ns</td>
            <td class="numeric">157.2 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_node_creation</td>
            <td class="numeric">98.59 µs</td>
            <td class="numeric">98.59 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_out_degree</td>
            <td class="numeric">100.9 ns</td>
            <td class="numeric">100.9 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_single_hop/10000_nodes</td>
            <td class="numeric">104.6 ns</td>
            <td class="numeric">104.6 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_single_hop/1000_nodes</td>
            <td class="numeric">103.3 ns</td>
            <td class="numeric">103.3 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">aletheiadb_single_hop/100_nodes</td>
            <td class="numeric">113.3 ns</td>
            <td class="numeric">113.3 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">arc_overhead/arc_clone_drop</td>
            <td class="numeric">32.3 ns</td>
            <td class="numeric">32.3 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">arc_overhead/direct_access</td>
            <td class="numeric">19.4 ns</td>
            <td class="numeric">19.4 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">batch_throughput/async</td>
            <td class="numeric">52.37 ms</td>
            <td class="numeric">52.37 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">batch_throughput/synchronous</td>
            <td class="numeric">758.78 ms</td>
            <td class="numeric">758.78 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">checkpoint_creation/100</td>
            <td class="numeric">4.05 ms</td>
            <td class="numeric">4.05 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">checkpoint_creation/1000</td>
            <td class="numeric">4.50 ms</td>
            <td class="numeric">4.50 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">checkpoint_creation/10000</td>
            <td class="numeric">8.78 ms</td>
            <td class="numeric">8.78 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">checkpoint_load/100</td>
            <td class="numeric">312.88 µs</td>
            <td class="numeric">312.88 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">checkpoint_load/1000</td>
            <td class="numeric">1.49 ms</td>
            <td class="numeric">1.49 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">checkpoint_load/10000</td>
            <td class="numeric">13.15 ms</td>
            <td class="numeric">13.15 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_batch_write_throughput/fast/100</td>
            <td class="numeric">5.32 ms</td>
            <td class="numeric">5.32 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_batch_write_throughput/fast/1000</td>
            <td class="numeric">47.50 ms</td>
            <td class="numeric">47.50 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_batch_write_throughput/fast/10000</td>
            <td class="numeric">457.43 ms</td>
            <td class="numeric">457.43 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_batch_write_throughput/zstd/100</td>
            <td class="numeric">7.98 ms</td>
            <td class="numeric">7.98 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_batch_write_throughput/zstd/1000</td>
            <td class="numeric">67.06 ms</td>
            <td class="numeric">67.06 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_batch_write_throughput/zstd/10000</td>
            <td class="numeric">183.45 ms</td>
            <td class="numeric">183.45 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_read_latency/single_read/fast_compression</td>
            <td class="numeric">38.47 µs</td>
            <td class="numeric">38.47 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_read_latency/single_read/no_compression</td>
            <td class="numeric">3.25 µs</td>
            <td class="numeric">3.25 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_read_latency/single_read/zstd_compression</td>
            <td class="numeric">37.93 µs</td>
            <td class="numeric">37.93 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_write_latency/single_write/fast_compression</td>
            <td class="numeric">341.14 µs</td>
            <td class="numeric">341.14 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_write_latency/single_write/no_compression</td>
            <td class="numeric">288.70 µs</td>
            <td class="numeric">288.70 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">cold_write_latency/single_write/zstd_compression</td>
            <td class="numeric">450.07 µs</td>
            <td class="numeric">450.07 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">compression_ratio/compress/fast</td>
            <td class="numeric">37.08 ms</td>
            <td class="numeric">37.08 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">compression_ratio/compress/no_compression</td>
            <td class="numeric">27.36 ms</td>
            <td class="numeric">27.36 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">compression_ratio/compress/zstd</td>
            <td class="numeric">40.95 ms</td>
            <td class="numeric">40.95 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">edge_creation</td>
            <td class="numeric">3.44 µs</td>
            <td class="numeric">3.44 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">edge_lookup</td>
            <td class="numeric">54.7 ns</td>
            <td class="numeric">54.7 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">find_neighbors</td>
            <td class="numeric">1.14 µs</td>
            <td class="numeric">1.14 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">find_nodes_by_property/10000_nodes</td>
            <td class="numeric">636.24 µs</td>
            <td class="numeric">636.24 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">find_nodes_by_property/1000_nodes</td>
            <td class="numeric">36.14 µs</td>
            <td class="numeric">36.14 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">find_nodes_by_property/100_nodes</td>
            <td class="numeric">4.40 µs</td>
            <td class="numeric">4.40 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">get_outgoing_allocation/degree_1</td>
            <td class="numeric">29.8 ns</td>
            <td class="numeric">29.8 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">get_outgoing_allocation/degree_10</td>
            <td class="numeric">29.4 ns</td>
            <td class="numeric">29.4 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">get_outgoing_allocation/degree_100</td>
            <td class="numeric">29.4 ns</td>
            <td class="numeric">29.4 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">hot_path/resolve/100</td>
            <td class="numeric">3.14 µs</td>
            <td class="numeric">3.14 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">hot_path/resolve/1000</td>
            <td class="numeric">32.13 µs</td>
            <td class="numeric">32.13 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">hot_path/resolve/10000</td>
            <td class="numeric">315.14 µs</td>
            <td class="numeric">315.14 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">hot_path/resolve_with/100</td>
            <td class="numeric">1.90 µs</td>
            <td class="numeric">1.90 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">hot_path/resolve_with/1000</td>
            <td class="numeric">19.53 µs</td>
            <td class="numeric">19.53 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">hot_path/resolve_with/10000</td>
            <td class="numeric">193.73 µs</td>
            <td class="numeric">193.73 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">id_generation_concurrent/threads/16</td>
            <td class="numeric">709.67 µs</td>
            <td class="numeric">709.67 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">id_generation_concurrent/threads/2</td>
            <td class="numeric">111.90 µs</td>
            <td class="numeric">111.90 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">id_generation_concurrent/threads/4</td>
            <td class="numeric">184.96 µs</td>
            <td class="numeric">184.96 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">id_generation_concurrent/threads/8</td>
            <td class="numeric">328.33 µs</td>
            <td class="numeric">328.33 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">id_generation_current/read_current</td>
            <td class="numeric">0.3 ns</td>
            <td class="numeric">0.3 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">id_generation_current/read_current_approximate</td>
            <td class="numeric">0.3 ns</td>
            <td class="numeric">0.3 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">id_generation_lifecycle/create_and_generate_1000</td>
            <td class="numeric">8.77 µs</td>
            <td class="numeric">8.77 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">id_generation_single_thread/sequential_1000</td>
            <td class="numeric">6.26 µs</td>
            <td class="numeric">6.26 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">id_generation_single_thread/sequential_10000</td>
            <td class="numeric">63.47 µs</td>
            <td class="numeric">63.47 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">in_degree</td>
            <td class="numeric">353.9 ns</td>
            <td class="numeric">353.9 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">labeled_traversal</td>
            <td class="numeric">425.6 ns</td>
            <td class="numeric">425.6 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">mixed_read_write_80_20</td>
            <td class="numeric">16.00 ms</td>
            <td class="numeric">16.00 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">multiple_accesses/resolve_100</td>
            <td class="numeric">3.14 µs</td>
            <td class="numeric">3.14 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">multiple_accesses/resolve_with_100</td>
            <td class="numeric">1.90 µs</td>
            <td class="numeric">1.90 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">node_creation</td>
            <td class="numeric">3.42 µs</td>
            <td class="numeric">3.42 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">node_lookup</td>
            <td class="numeric">57.4 ns</td>
            <td class="numeric">57.4 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">out_degree</td>
            <td class="numeric">359.8 ns</td>
            <td class="numeric">359.8 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">property_lookup_vs_scan/find_nodes_by_property</td>
            <td class="numeric">34.45 µs</td>
            <td class="numeric">34.45 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">property_lookup_vs_scan/manual_label_scan_filter</td>
            <td class="numeric">123.68 µs</td>
            <td class="numeric">123.68 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">read_latency_p50_p99</td>
            <td class="numeric">9.3 ns</td>
            <td class="numeric">9.3 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">recovery/10</td>
            <td class="numeric">401.83 µs</td>
            <td class="numeric">401.83 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">recovery/100</td>
            <td class="numeric">412.59 µs</td>
            <td class="numeric">412.59 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">recovery/1000</td>
            <td class="numeric">612.70 µs</td>
            <td class="numeric">612.70 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">serialization_simulation/resolve</td>
            <td class="numeric">160.24 µs</td>
            <td class="numeric">160.24 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">serialization_simulation/resolve_with</td>
            <td class="numeric">98.29 µs</td>
            <td class="numeric">98.29 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">single_hop_traversal/10000_nodes</td>
            <td class="numeric">393.8 ns</td>
            <td class="numeric">393.8 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">single_hop_traversal/1000_nodes</td>
            <td class="numeric">412.5 ns</td>
            <td class="numeric">412.5 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">single_hop_traversal/100_nodes</td>
            <td class="numeric">399.0 ns</td>
            <td class="numeric">399.0 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">single_transaction_latency/async</td>
            <td class="numeric">64.90 µs</td>
            <td class="numeric">64.90 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">single_transaction_latency/async_batched_aggressive</td>
            <td class="numeric">5.10 ms</td>
            <td class="numeric">5.10 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">single_transaction_latency/async_batched_default</td>
            <td class="numeric">9.24 ms</td>
            <td class="numeric">9.24 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">single_transaction_latency/group_commit_default</td>
            <td class="numeric">3.20 ms</td>
            <td class="numeric">3.20 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">single_transaction_latency/group_commit_fast</td>
            <td class="numeric">2.01 ms</td>
            <td class="numeric">2.01 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">single_transaction_latency/synchronous</td>
            <td class="numeric">738.79 µs</td>
            <td class="numeric">738.79 µs</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">string_access_single/resolve</td>
            <td class="numeric">32.8 ns</td>
            <td class="numeric">32.8 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">string_access_single/resolve_with</td>
            <td class="numeric">20.4 ns</td>
            <td class="numeric">20.4 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">string_comparison/resolve</td>
            <td class="numeric">31.1 ns</td>
            <td class="numeric">31.1 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">string_comparison/resolve_with</td>
            <td class="numeric">20.2 ns</td>
            <td class="numeric">20.2 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">string_length/resolve</td>
            <td class="numeric">31.9 ns</td>
            <td class="numeric">31.9 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">string_length/resolve_with</td>
            <td class="numeric">19.3 ns</td>
            <td class="numeric">19.3 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">sustained_write_throughput/sustained_write_10k_versions</td>
            <td class="numeric">188.72 ms</td>
            <td class="numeric">188.72 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">sustained_write_throughput/sustained_write_10k_versions_fast_reference</td>
            <td class="numeric">458.79 ms</td>
            <td class="numeric">458.79 ms</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">time_travel/at_anchor_v20</td>
            <td class="numeric">196.7 ns</td>
            <td class="numeric">196.7 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">time_travel/deep_history_v5</td>
            <td class="numeric">194.3 ns</td>
            <td class="numeric">194.3 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">time_travel/with_deltas_v15</td>
            <td class="numeric">191.2 ns</td>
            <td class="numeric">191.2 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
        <tr class="row-stable">
            <td class="bench-name">time_travel/worst_case_v19</td>
            <td class="numeric">237.1 ns</td>
            <td class="numeric">237.1 ns</td>
            <td class="change">+0.0%</td>
            <td class="status-cell">🟡</td>
        </tr>
      </tbody>
    </table>
  </div>

  <div class="section-header">Performance Over Time (µs)</div>
  <div class="chart-container">
    <div class="chart-canvas-wrap">
      <canvas id="timeseriesChart"></canvas>
    </div>
  </div>

  <footer>
    Generated by <strong>Chronos</strong> — The Temporal Benchkeeper &nbsp;|&nbsp; Powered by Criterion
  </footer>
</div>

<script>
  const datasets = [{"label": "3_hop_traversal", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 56.709, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 50.5, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 50.5, "commit": "dc19c58"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_3_hop_traversal", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.483, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.481, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.491, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.491, "commit": "dc19c58"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_batch/batch_node_creation/10", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 27807.5, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 30397.243, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 29939.598, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 29939.598, "commit": "dc19c58"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_batch/batch_node_creation/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 289829.223, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 325397.03, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 320779.687, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 320779.687, "commit": "dc19c58"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_batch/batch_node_creation/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 2831177.141, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 3302576.801, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 3242852.64, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 3242852.64, "commit": "dc19c58"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_edge_creation", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 97.346, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 97.41, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 97.436, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 97.436, "commit": "dc19c58"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_fast_path/node_lookup/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.063, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.061, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.056, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.056, "commit": "dc19c58"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_fast_path/node_lookup/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.062, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.061, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.062, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.062, "commit": "dc19c58"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_fast_path/node_lookup/10000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.061, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.062, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.061, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.061, "commit": "dc19c58"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_historical_stats", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.059, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 1.061, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.944, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.944, "commit": "dc19c58"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_in_degree", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.105, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.1, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.094, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.094, "commit": "dc19c58"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_labeled_traversal", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.16, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.16, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.157, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.157, "commit": "dc19c58"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_node_creation", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 105.588, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 98.576, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 98.588, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 98.588, "commit": "dc19c58"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_out_degree", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.1, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.106, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.101, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.101, "commit": "dc19c58"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_single_hop/10000_nodes", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.116, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.115, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.105, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.105, "commit": "dc19c58"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_single_hop/1000_nodes", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.117, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.115, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.103, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.103, "commit": "dc19c58"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "aletheiadb_single_hop/100_nodes", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.116, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.116, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.113, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.113, "commit": "dc19c58"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "arc_overhead/arc_clone_drop", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.032, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.032, "commit": "dc19c58"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "arc_overhead/direct_access", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.019, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.019, "commit": "dc19c58"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "batch_throughput/async", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 52792.62, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 52369.763, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 52369.763, "commit": "dc19c58"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "batch_throughput/synchronous", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 635748.426, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 758780.474, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 758780.474, "commit": "dc19c58"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "checkpoint_creation/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 4892.959, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 4050.173, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 4050.173, "commit": "dc19c58"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "checkpoint_creation/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 4029.267, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 4503.957, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 4503.957, "commit": "dc19c58"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "checkpoint_creation/10000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 7663.185, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 8782.352, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 8782.352, "commit": "dc19c58"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "checkpoint_load/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 323.505, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 312.876, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 312.876, "commit": "dc19c58"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "checkpoint_load/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1627.958, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 1490.438, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 1490.438, "commit": "dc19c58"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "checkpoint_load/10000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 15179.93, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 13147.423, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 13147.423, "commit": "dc19c58"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "closure_write_single_node", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 2805.76, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 2805.76, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_batch_write_throughput/fast/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 4929.243, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 5315.076, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 5315.076, "commit": "dc19c58"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_batch_write_throughput/fast/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 45813.563, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 47496.73, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 47496.73, "commit": "dc19c58"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_batch_write_throughput/fast/10000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 454829.735, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 457425.995, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 457425.995, "commit": "dc19c58"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_batch_write_throughput/zstd/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 7446.458, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 7984.555, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 7984.555, "commit": "dc19c58"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_batch_write_throughput/zstd/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 66782.381, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 67057.96, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 67057.96, "commit": "dc19c58"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_batch_write_throughput/zstd/10000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 189514.992, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 183446.03, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 183446.03, "commit": "dc19c58"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_read_latency/single_read/fast_compression", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 34.539, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 38.472, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 38.472, "commit": "dc19c58"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_read_latency/single_read/no_compression", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 3.306, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 3.25, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 3.25, "commit": "dc19c58"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_read_latency/single_read/zstd_compression", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 34.409, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 37.93, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 37.93, "commit": "dc19c58"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_write_latency/single_write/fast_compression", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 340.426, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 341.138, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 341.138, "commit": "dc19c58"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_write_latency/single_write/no_compression", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 343.791, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 288.701, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 288.701, "commit": "dc19c58"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cold_write_latency/single_write/zstd_compression", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 373.867, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 450.068, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 450.068, "commit": "dc19c58"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "comparison_csr/full_rebuild_insert_query", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 140.053, "commit": "198c57d"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "comparison_csr/incremental_csr_insert_query", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 16.596, "commit": "198c57d"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "compression_ratio/compress/fast", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 34868.528, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 37084.81, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 37084.81, "commit": "dc19c58"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "compression_ratio/compress/no_compression", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 31258.892, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 27364.011, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 27364.011, "commit": "dc19c58"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "compression_ratio/compress/zstd", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 36219.494, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 40949.195, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 40949.195, "commit": "dc19c58"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_reads_same_entity/10000_versions/2_readers", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 133.878, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 133.878, "commit": "198c57d"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_reads_same_entity/10000_versions/4_readers", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 474.741, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 474.741, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_reads_same_entity/1000_versions/16_readers", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 767.646, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 767.646, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_reads_same_entity/1000_versions/2_readers", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 130.103, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 130.103, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_reads_same_entity/1000_versions/4_readers", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 220.644, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 220.644, "commit": "198c57d"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_reads_same_entity/1000_versions/8_readers", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 422.905, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 422.905, "commit": "198c57d"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_reads_same_entity/100_versions/16_readers", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 696.718, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 696.718, "commit": "198c57d"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_reads_same_entity/100_versions/2_readers", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 130.264, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 130.264, "commit": "198c57d"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_reads_same_entity/100_versions/4_readers", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 203.703, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 203.703, "commit": "198c57d"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_reads_same_entity/100_versions/8_readers", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 383.868, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 383.868, "commit": "198c57d"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_writes/different_entities/2", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 139.707, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 139.707, "commit": "198c57d"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_writes/different_entities/4", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 220.015, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 220.015, "commit": "198c57d"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_writes/different_entities/8", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 417.36, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 417.36, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_writes/same_entity_contention/2", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 214.574, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 214.574, "commit": "198c57d"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_writes/same_entity_contention/4", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 1225.713, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 1225.713, "commit": "198c57d"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "concurrent_writes/same_entity_contention/8", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 9476.39, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 9476.39, "commit": "198c57d"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/naive_3pass/1024", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 4.6, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/naive_3pass/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 6.952, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/naive_3pass/3072", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 14.034, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/naive_3pass/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.652, "commit": "198c57d"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/naive_3pass/768", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 3.435, "commit": "198c57d"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/optimized/1024", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.201, "commit": "198c57d"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/optimized/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.3, "commit": "198c57d"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/optimized/3072", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.592, "commit": "198c57d"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/optimized/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.077, "commit": "198c57d"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/optimized/768", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.152, "commit": "198c57d"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/scalar_1pass/1024", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.581, "commit": "198c57d"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/scalar_1pass/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 2.36, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/scalar_1pass/3072", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 4.728, "commit": "198c57d"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/scalar_1pass/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.636, "commit": "198c57d"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity/scalar_1pass/768", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.182, "commit": "198c57d"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity_batch/find_most_similar/10", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.811, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity_batch/find_most_similar/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 8.281, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity_batch/find_most_similar/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 90.459, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity_normalized/general/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.3, "commit": "198c57d"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity_normalized/general/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.078, "commit": "198c57d"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity_normalized/specialized/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.285, "commit": "198c57d"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity_normalized/specialized/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.057, "commit": "198c57d"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "cosine_similarity_openai_1536d", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.302, "commit": "198c57d"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "edge_creation", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 4.461, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 3.441, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 3.441, "commit": "dc19c58"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "edge_lookup", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.062, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.055, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.055, "commit": "dc19c58"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/optimized/1024", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.175, "commit": "198c57d"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/optimized/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.273, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/optimized/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.066, "commit": "198c57d"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/optimized/768", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.124, "commit": "198c57d"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/scalar/1024", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.549, "commit": "198c57d"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/scalar/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 2.332, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/scalar/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.567, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/scalar/768", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.155, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/squared_optimized/1024", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.173, "commit": "198c57d"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/squared_optimized/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.27, "commit": "198c57d"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/squared_optimized/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.057, "commit": "198c57d"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "euclidean_distance/squared_optimized/768", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.121, "commit": "198c57d"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "find_neighbors", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.241, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 1.139, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 1.139, "commit": "dc19c58"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "find_nodes_by_property/10000_nodes", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 757.093, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 636.241, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 636.241, "commit": "dc19c58"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "find_nodes_by_property/1000_nodes", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 50.79, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 36.142, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 36.142, "commit": "dc19c58"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "find_nodes_by_property/100_nodes", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 4.674, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 4.402, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 4.402, "commit": "dc19c58"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "frozen_view_hot_path/frozen_view/100000edges", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.04, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "frozen_view_hot_path/frozen_view/10000edges", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.034, "commit": "198c57d"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "frozen_view_hot_path/frozen_view/1000edges", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.021, "commit": "198c57d"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "frozen_view_hot_path/merged_guard/100000edges", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.033, "commit": "198c57d"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "frozen_view_hot_path/merged_guard/10000edges", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.033, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "frozen_view_hot_path/merged_guard/1000edges", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.033, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "get_outgoing_allocation/degree_1", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.036, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.03, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.03, "commit": "dc19c58"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "get_outgoing_allocation/degree_10", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.035, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.029, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.029, "commit": "dc19c58"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "get_outgoing_allocation/degree_100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.035, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.029, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.029, "commit": "dc19c58"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "hot_path/resolve/100", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 3.139, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 3.139, "commit": "dc19c58"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "hot_path/resolve/1000", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 32.127, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 32.127, "commit": "dc19c58"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "hot_path/resolve/10000", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 315.142, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 315.142, "commit": "dc19c58"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "hot_path/resolve_with/100", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 1.902, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 1.902, "commit": "dc19c58"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "hot_path/resolve_with/1000", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 19.53, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 19.53, "commit": "dc19c58"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "hot_path/resolve_with/10000", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 193.731, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 193.731, "commit": "dc19c58"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "id_generation_concurrent/threads/16", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 674.799, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 709.674, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 709.674, "commit": "dc19c58"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "id_generation_concurrent/threads/2", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 120.894, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 111.904, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 111.904, "commit": "dc19c58"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "id_generation_concurrent/threads/4", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 198.107, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 184.964, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 184.964, "commit": "dc19c58"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "id_generation_concurrent/threads/8", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 375.165, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 328.335, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 328.335, "commit": "dc19c58"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "id_generation_current/read_current", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.0, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.0, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.0, "commit": "dc19c58"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "id_generation_current/read_current_approximate", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.0, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.0, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.0, "commit": "dc19c58"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "id_generation_lifecycle/create_and_generate_1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 8.802, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 8.769, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 8.769, "commit": "dc19c58"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "id_generation_single_thread/sequential_1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 6.901, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 6.258, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 6.258, "commit": "dc19c58"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "id_generation_single_thread/sequential_10000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 69.016, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 63.474, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 63.474, "commit": "dc19c58"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "in_degree", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.399, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.354, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.354, "commit": "dc19c58"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_compaction/edges/1000+100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 60.279, "commit": "198c57d"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_compaction/edges/10000+1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 955.605, "commit": "198c57d"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_compaction/edges/100000+10000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 8192.206, "commit": "198c57d"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_concurrent/threads/2", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 141.575, "commit": "198c57d"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_concurrent/threads/4", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 211.623, "commit": "198c57d"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_concurrent/threads/8", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 410.132, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_insert_latency/0existing", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.289, "commit": "198c57d"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_insert_latency/100000existing", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.289, "commit": "198c57d"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_insert_latency/10000existing", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.183, "commit": "198c57d"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_insert_latency/1000existing", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.226, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_read_no_delta/10000edges", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.033, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_read_no_delta/1000edges", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.033, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_read_no_delta/100edges", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.033, "commit": "198c57d"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_read_with_delta/10pct_delta", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.068, "commit": "198c57d"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_read_with_delta/1pct_delta", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.064, "commit": "198c57d"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "incremental_read_with_delta/5pct_delta", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.064, "commit": "198c57d"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "knn_search/k/1", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 126.51, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 126.51, "commit": "198c57d"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "knn_search/k/10", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 121.112, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 121.112, "commit": "198c57d"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "knn_search/k/20", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 123.289, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 123.289, "commit": "198c57d"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "knn_search/k/5", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 119.25, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 119.25, "commit": "198c57d"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "knn_search/k/50", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 122.094, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 122.094, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "knn_search_index_size/index_size/100", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 21.022, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 21.022, "commit": "198c57d"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "knn_search_index_size/index_size/1000", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 120.522, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 120.522, "commit": "198c57d"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "knn_search_index_size/index_size/10000", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 313.174, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 313.174, "commit": "198c57d"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "knn_search_index_size/index_size/500", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 68.085, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 68.085, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "knn_search_index_size/index_size/5000", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 242.319, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 242.319, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "labeled_traversal", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.466, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.426, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.426, "commit": "dc19c58"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "mixed_read_write_80_20", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 16590.657, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 16000.284, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 16000.284, "commit": "dc19c58"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "multiple_accesses/resolve_100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 3.567, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 3.137, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 3.137, "commit": "dc19c58"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "multiple_accesses/resolve_with_100", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 1.904, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 1.904, "commit": "dc19c58"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "node_creation", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 4.433, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 3.425, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 3.425, "commit": "dc19c58"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "node_lookup", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.065, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.057, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.057, "commit": "dc19c58"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "out_degree", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.406, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.36, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.36, "commit": "dc19c58"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "point_in_time_queries/1000vectors", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.03, "commit": "198c57d"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "point_in_time_queries/100vectors", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.027, "commit": "198c57d"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "property_lookup_vs_scan/find_nodes_by_property", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 39.031, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 34.448, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 34.448, "commit": "dc19c58"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "property_lookup_vs_scan/manual_label_scan_filter", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 138.292, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 123.679, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 123.679, "commit": "dc19c58"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "read_latency_p50_p99", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.009, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.009, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.009, "commit": "dc19c58"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "read_transaction_creation", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 0.339, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.339, "commit": "198c57d"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "read_under_write_contention/concurrent_writers/0", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 4.455, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 4.455, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "read_under_write_contention/concurrent_writers/2", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 56660.317, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 56660.317, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "read_under_write_contention/concurrent_writers/4", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 114751.007, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 114751.007, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "recovery/10", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 500.064, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 401.83, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 401.83, "commit": "dc19c58"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "recovery/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 457.033, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 412.587, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 412.587, "commit": "dc19c58"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "recovery/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 647.917, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 612.701, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 612.701, "commit": "dc19c58"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "serialization_simulation/resolve", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 160.238, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 160.238, "commit": "dc19c58"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "serialization_simulation/resolve_with", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 98.287, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 98.287, "commit": "dc19c58"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "single_hop_traversal/10000_nodes", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.432, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.394, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.394, "commit": "dc19c58"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "single_hop_traversal/1000_nodes", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.432, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.412, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.412, "commit": "dc19c58"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "single_hop_traversal/100_nodes", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.431, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.399, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.399, "commit": "dc19c58"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "single_transaction_latency/async", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 65.065, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 64.9, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 64.9, "commit": "dc19c58"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "single_transaction_latency/async_batched_aggressive", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 5017.23, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 5099.494, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 5099.494, "commit": "dc19c58"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "single_transaction_latency/async_batched_default", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 9188.521, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 9242.506, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 9242.506, "commit": "dc19c58"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "single_transaction_latency/group_commit_default", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 2755.249, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 3202.838, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 3202.838, "commit": "dc19c58"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "single_transaction_latency/group_commit_fast", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1799.046, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 2005.998, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 2005.998, "commit": "dc19c58"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "single_transaction_latency/synchronous", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 571.977, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 738.791, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 738.791, "commit": "dc19c58"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "snapshot_creation/time_interval_1s", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.077, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "snapshot_creation/transaction_interval_10", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 24.161, "commit": "198c57d"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "snapshot_creation/transaction_interval_100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 2.504, "commit": "198c57d"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "string_access_single/resolve", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.036, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.033, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.033, "commit": "dc19c58"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "string_access_single/resolve_with", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.022, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.02, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.02, "commit": "dc19c58"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "string_comparison/resolve", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.036, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.031, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.031, "commit": "dc19c58"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "string_comparison/resolve_with", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.022, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.02, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.02, "commit": "dc19c58"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "string_length/resolve", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.037, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.032, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.032, "commit": "dc19c58"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "string_length/resolve_with", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.022, "commit": "198c57d"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.019, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.019, "commit": "dc19c58"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "sustained_write_10k_versions", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 181743.777, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "sustained_write_10k_versions_fast_reference", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 455090.031, "commit": "198c57d"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "sustained_write_throughput/sustained_write_10k_versions", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 188724.561, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 188724.561, "commit": "dc19c58"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "sustained_write_throughput/sustained_write_10k_versions_fast_reference", "data": [{"x": "2026-03-15T02:30:09.832082+00:00", "y": 458794.149, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 458794.149, "commit": "dc19c58"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "target_3_hop/traverse_three_hops", "data": [{"x": "2026-02-21T18:07:48.283497+00:00", "y": 0.282, "commit": "198c57d"}, {"x": "2026-02-21T18:56:59.315967+00:00", "y": 0.282, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.269, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "target_batch_insertion/insert_1000_edges", "data": [{"x": "2026-02-21T18:07:48.283497+00:00", "y": 781.382, "commit": "198c57d"}, {"x": "2026-02-21T18:56:59.315967+00:00", "y": 781.382, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 630.489, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "target_single_hop/traverse_one_hop", "data": [{"x": "2026-02-21T18:07:48.283497+00:00", "y": 0.043, "commit": "198c57d"}, {"x": "2026-02-21T18:56:59.315967+00:00", "y": 0.043, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.04, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "target_time_travel/at_anchor", "data": [{"x": "2026-02-21T18:07:48.283497+00:00", "y": 0.283, "commit": "198c57d"}, {"x": "2026-02-21T18:56:59.315967+00:00", "y": 0.283, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.272, "commit": "198c57d"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "target_time_travel/with_5_deltas", "data": [{"x": "2026-02-21T18:07:48.283497+00:00", "y": 0.275, "commit": "198c57d"}, {"x": "2026-02-21T18:56:59.315967+00:00", "y": 0.275, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.279, "commit": "198c57d"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "target_time_travel/worst_case_9_deltas", "data": [{"x": "2026-02-21T18:07:48.283497+00:00", "y": 0.286, "commit": "198c57d"}, {"x": "2026-02-21T18:56:59.315967+00:00", "y": 0.286, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.274, "commit": "198c57d"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "temporal_insert/append_only/100", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 20.522, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 20.522, "commit": "198c57d"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "temporal_insert/append_only/1000", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 210.752, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 210.752, "commit": "198c57d"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "temporal_insert/append_only/10000", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 2170.105, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 2170.105, "commit": "198c57d"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "temporal_insert/retroactive/100", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 147.472, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 147.472, "commit": "198c57d"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "temporal_insert/retroactive/1000", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 12548.726, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 12548.726, "commit": "198c57d"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "temporal_insert/retroactive/10000", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 1286764.102, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 1286764.102, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "time_travel/at_anchor_v20", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.124, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.122, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.197, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.197, "commit": "dc19c58"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "time_travel/deep_history_v5", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.124, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.125, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.194, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.194, "commit": "dc19c58"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "time_travel/with_deltas_v15", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.124, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.161, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.191, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.191, "commit": "dc19c58"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "time_travel/worst_case_v19", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.124, "commit": "198c57d"}, {"x": "2026-03-03T06:54:27.366554+00:00", "y": 0.138, "commit": "268e122"}, {"x": "2026-03-15T02:30:09.832082+00:00", "y": 0.237, "commit": "268e122"}, {"x": "2026-03-15T02:35:36.460054+00:00", "y": 0.237, "commit": "dc19c58"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "traverse_and_rank_basic/100_power_law/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 40.645, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "traverse_and_rank_basic/100_sparse/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.287, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "traverse_and_rank_basic/100_uniform/100", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 7.893, "commit": "198c57d"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "traverse_and_rank_basic/1K_power_law/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 47.543, "commit": "198c57d"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "traverse_and_rank_basic/1K_sparse/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.276, "commit": "198c57d"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "traverse_and_rank_basic/1K_uniform/1000", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 8.124, "commit": "198c57d"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "valid_at_query/10000_versions", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 22.355, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 22.355, "commit": "198c57d"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "valid_at_query/1000_versions", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 3.901, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 3.901, "commit": "198c57d"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "valid_at_query/100_versions", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 1.53, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.53, "commit": "198c57d"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_batch_deserialize/retrieval_workload/100x1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 36.638, "commit": "198c57d"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_batch_serialize/rag_workload/100x1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 22.986, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_deserialize/deserialize/1", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.055, "commit": "198c57d"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_deserialize/deserialize/10", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.055, "commit": "198c57d"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_deserialize/deserialize/128", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.067, "commit": "198c57d"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_deserialize/deserialize/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.377, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_deserialize/deserialize/3072", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.752, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_deserialize/deserialize/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.241, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_deserialize/deserialize/768", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.282, "commit": "198c57d"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_round_trip/round_trip/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.614, "commit": "198c57d"}], "borderColor": "#f87171", "backgroundColor": "#f8717133", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_round_trip/round_trip/3072", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 1.433, "commit": "198c57d"}], "borderColor": "#60a5fa", "backgroundColor": "#60a5fa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_round_trip/round_trip/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.385, "commit": "198c57d"}], "borderColor": "#c084fc", "backgroundColor": "#c084fc33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_round_trip/round_trip/768", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.428, "commit": "198c57d"}], "borderColor": "#fb923c", "backgroundColor": "#fb923c33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_serialize/serialize/1", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.028, "commit": "198c57d"}], "borderColor": "#4ade80", "backgroundColor": "#4ade8033", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_serialize/serialize/10", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.027, "commit": "198c57d"}], "borderColor": "#e879f9", "backgroundColor": "#e879f933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_serialize/serialize/128", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.035, "commit": "198c57d"}], "borderColor": "#38bdf8", "backgroundColor": "#38bdf833", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_serialize/serialize/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.173, "commit": "198c57d"}], "borderColor": "#a3e635", "backgroundColor": "#a3e63533", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_serialize/serialize/3072", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.219, "commit": "198c57d"}], "borderColor": "#f43f5e", "backgroundColor": "#f43f5e33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_serialize/serialize/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.135, "commit": "198c57d"}], "borderColor": "#14b8a6", "backgroundColor": "#14b8a633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_serialize/serialize/768", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.134, "commit": "198c57d"}], "borderColor": "#22d3ee", "backgroundColor": "#22d3ee33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_serialize_into/serialize_into/1536", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.181, "commit": "198c57d"}], "borderColor": "#a78bfa", "backgroundColor": "#a78bfa33", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_serialize_into/serialize_into/384", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.12, "commit": "198c57d"}], "borderColor": "#f472b6", "backgroundColor": "#f472b633", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "vector_serialize_into/serialize_into/768", "data": [{"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.142, "commit": "198c57d"}], "borderColor": "#34d399", "backgroundColor": "#34d39933", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}, {"label": "write_transaction_creation", "data": [{"x": "2026-02-21T18:56:59.315967+00:00", "y": 0.462, "commit": "198c57d"}, {"x": "2026-02-21T20:43:41.849269+00:00", "y": 0.462, "commit": "198c57d"}], "borderColor": "#fbbf24", "backgroundColor": "#fbbf2433", "fill": false, "tension": 0.3, "pointRadius": 4, "pointHoverRadius": 7}];

  const ctx = document.getElementById('timeseriesChart').getContext('2d');
  new Chart(ctx, {
    type: 'line',
    data: { datasets },
    options: {
      responsive: true,
      maintainAspectRatio: false,
      interaction: {
        mode: 'index',
        intersect: false,
      },
      plugins: {
        legend: {
          position: 'bottom',
          labels: {
            color: '#94a3b8',
            font: { family: "'JetBrains Mono', monospace", size: 11 },
            boxWidth: 12,
            padding: 16,
          },
        },
        tooltip: {
          backgroundColor: '#1a2235',
          titleColor: '#e2e8f0',
          bodyColor: '#94a3b8',
          borderColor: '#334155',
          borderWidth: 1,
          titleFont: { family: "'JetBrains Mono', monospace" },
          bodyFont: { family: "'JetBrains Mono', monospace", size: 12 },
          callbacks: {
            afterTitle: function(items) {
              const pt = items[0];
              const ds = datasets[pt.datasetIndex];
              if (ds && ds.data[pt.dataIndex]) {
                return 'commit: ' + ds.data[pt.dataIndex].commit;
              }
              return '';
            },
            label: function(ctx) {
              return ctx.dataset.label + ': ' + ctx.parsed.y.toFixed(2) + ' µs';
            },
          },
        },
      },
      scales: {
        x: {
          type: 'time',
          time: {
            tooltipFormat: 'yyyy-MM-dd HH:mm',
            displayFormats: {
              hour: 'MMM d HH:mm',
              day: 'MMM d',
              week: 'MMM d',
              month: 'MMM yyyy',
            },
          },
          ticks: {
            color: '#64748b',
            font: { family: "'JetBrains Mono', monospace", size: 10 },
            maxRotation: 45,
          },
          grid: {
            color: 'rgba(30, 41, 59, 0.5)',
          },
        },
        y: {
          beginAtZero: false,
          ticks: {
            color: '#64748b',
            font: { family: "'JetBrains Mono', monospace", size: 10 },
            callback: function(val) { return val.toFixed(1) + ' µs'; },
          },
          grid: {
            color: 'rgba(30, 41, 59, 0.5)',
          },
        },
      },
    },
  });
</script>

</body>
</html>