-
Notifications
You must be signed in to change notification settings - Fork 2
/
test_results.json
1805 lines (1805 loc) · 538 KB
/
test_results.json
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
{"type":"Metric","data":{"name":"data_sent","type":"counter","contains":"data","thresholds":[],"submetrics":null},"metric":"data_sent"}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:18.5574245+01:00","value":0,"tags":{"group":"::setup"}}}
{"type":"Metric","data":{"name":"data_received","type":"counter","contains":"data","thresholds":[],"submetrics":null},"metric":"data_received"}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:18.5574245+01:00","value":0,"tags":{"group":"::setup"}}}
{"type":"Metric","data":{"name":"iteration_duration","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"iteration_duration"}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:18.5574245+01:00","value":0,"tags":{"group":"::setup"}}}
{"type":"Metric","data":{"name":"http_reqs","type":"counter","contains":"default","thresholds":[],"submetrics":null},"metric":"http_reqs"}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:18.6846096+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"type":"Metric","data":{"name":"http_req_duration","type":"trend","contains":"time","thresholds":["p(95) < 500"],"submetrics":[{"name":"http_req_duration{expected_response:true}","suffix":"expected_response:true","tags":{"expected_response":"true"}}]},"metric":"http_req_duration"}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:18.6846096+01:00","value":36.2079,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"type":"Metric","data":{"name":"http_req_blocked","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_blocked"}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:18.6846096+01:00","value":90.9772,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"type":"Metric","data":{"name":"http_req_connecting","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_connecting"}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:18.6846096+01:00","value":23.5103,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"type":"Metric","data":{"name":"http_req_tls_handshaking","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_tls_handshaking"}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:18.6846096+01:00","value":47.9959,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"type":"Metric","data":{"name":"http_req_sending","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_sending"}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:18.6846096+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"type":"Metric","data":{"name":"http_req_waiting","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_waiting"}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:18.6846096+01:00","value":34.0113,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"type":"Metric","data":{"name":"http_req_receiving","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"http_req_receiving"}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:18.6846096+01:00","value":2.1966,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"type":"Metric","data":{"name":"http_req_failed","type":"rate","contains":"default","thresholds":["rate < 0.01"],"submetrics":null},"metric":"http_req_failed"}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:18.6846096+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"type":"Metric","data":{"name":"vus","type":"gauge","contains":"default","thresholds":[],"submetrics":null},"metric":"vus"}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:19.5686312+01:00","value":1,"tags":{}}}
{"type":"Metric","data":{"name":"vus_max","type":"gauge","contains":"default","thresholds":[],"submetrics":null},"metric":"vus_max"}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:19.5686312+01:00","value":5,"tags":{}}}
{"type":"Metric","data":{"name":"group_duration","type":"trend","contains":"time","thresholds":[],"submetrics":null},"metric":"group_duration"}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:19.6948511+01:00","value":1137.4266,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:19.8237266+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:19.8237266+01:00","value":128.8755,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:19.8237266+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:19.8237266+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:19.8237266+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:19.8237266+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:19.8237266+01:00","value":128.8755,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:19.8237266+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:19.8237266+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:20.5656258+01:00","value":1,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:20.5656258+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:20.8327914+01:00","value":1137.9403,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:20.8327914+01:00","value":902,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:20.8327914+01:00","value":34774,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:20.8327914+01:00","value":2275.3669,"tags":{"group":"","scenario":"embeddables"}}}
{"type":"Metric","data":{"name":"iterations","type":"counter","contains":"default","thresholds":[],"submetrics":null},"metric":"iterations"}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:20.8327914+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:20.8676941+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:20.8676941+01:00","value":34.9027,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:20.8676941+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:20.8676941+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:20.8676941+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:20.8676941+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:20.8676941+01:00","value":33.5612,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:20.8676941+01:00","value":1.3415,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:20.8676941+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:21.5552767+01:00","value":1,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:21.5552767+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:21.8694861+01:00","value":1036.6947,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:21.996242+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:21.996242+01:00","value":126.7055,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:21.996242+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:21.996242+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:21.996242+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:21.996242+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:21.996242+01:00","value":126.6094,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:21.996242+01:00","value":0.0961,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:21.996242+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:22.5630984+01:00","value":1,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:22.5630984+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:23.0010615+01:00","value":1131.525,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:23.0010615+01:00","value":361,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:23.0010615+01:00","value":28563,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:23.0010615+01:00","value":2168.2701,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:23.0010615+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:23.0380973+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:23.0380973+01:00","value":37.0358,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:23.0380973+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:23.0380973+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:23.0380973+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:23.0380973+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:23.0380973+01:00","value":35.0792,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:23.0380973+01:00","value":1.9566,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:23.0380973+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:23.5646846+01:00","value":1,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:23.5646846+01:00","value":5,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:23.6598612+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:23.6598612+01:00","value":34.6719,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:23.6598612+01:00","value":60.5047,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:23.6598612+01:00","value":31.0026,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:23.6598612+01:00","value":29.5021,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:23.6598612+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:23.6598612+01:00","value":32.5218,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:23.6598612+01:00","value":2.1501,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:23.6598612+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:24.0517339+01:00","value":1050.6724,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:24.1746393+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:24.1746393+01:00","value":122.9054,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:24.1746393+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:24.1746393+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:24.1746393+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:24.1746393+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:24.1746393+01:00","value":122.2594,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:24.1746393+01:00","value":0.646,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:24.1746393+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:24.5682039+01:00","value":2,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:24.5682039+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:24.66155+01:00","value":1096.8654,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:24.9668564+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:24.9668564+01:00","value":305.3064,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:24.9668564+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:24.9668564+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:24.9668564+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:24.9668564+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:24.9668564+01:00","value":305.3064,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:24.9668564+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:24.9668564+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:25.189125+01:00","value":1137.3911,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:25.1891813+01:00","value":361,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:25.1891813+01:00","value":28365,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:25.1891813+01:00","value":2188.1198,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:25.1891813+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:25.2251319+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:25.2251319+01:00","value":35.9506,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:25.2251319+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:25.2251319+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:25.2251319+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:25.2251319+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:25.2251319+01:00","value":31.5635,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:25.2251319+01:00","value":4.3871,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:25.2251319+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:25.561473+01:00","value":2,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:25.561473+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:25.9816954+01:00","value":1320.1454,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:25.9816954+01:00","value":902,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:25.9816954+01:00","value":34777,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:25.9816954+01:00","value":2417.0108,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:25.9816954+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:26.0172807+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:26.0172807+01:00","value":35.5853,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:26.0172807+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:26.0172807+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:26.0172807+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:26.0172807+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:26.0172807+01:00","value":33.601,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:26.0172807+01:00","value":1.9843,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:26.0172807+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:26.2294386+01:00","value":1040.2573,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:26.3539748+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:26.3539748+01:00","value":124.4474,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:26.3539748+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:26.3539748+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:26.3539748+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:26.3539748+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:26.3539748+01:00","value":123.9994,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:26.3539748+01:00","value":0.448,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:26.3539748+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:26.5704405+01:00","value":2,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:26.5704405+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:27.0252415+01:00","value":1043.5461,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:27.1512274+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:27.1512274+01:00","value":125.9859,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:27.1512274+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:27.1512274+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:27.1512274+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:27.1512274+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:27.1512274+01:00","value":125.9859,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:27.1512274+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:27.1512274+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:27.3690096+01:00","value":1139.4822,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:27.3690096+01:00","value":383,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:27.3690096+01:00","value":29148,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:27.3690096+01:00","value":2179.8283,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:27.3690096+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:27.401494+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:27.401494+01:00","value":32.4844,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:27.401494+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:27.401494+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:27.401494+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:27.401494+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:27.401494+01:00","value":29.6375,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:27.401494+01:00","value":2.8469,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:27.401494+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:27.5557395+01:00","value":2,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:27.5557395+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:28.1512623+01:00","value":1126.0208,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:28.1512623+01:00","value":383,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:28.1512623+01:00","value":28567,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:28.1512623+01:00","value":2169.5669,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:28.1512623+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:28.1856469+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:28.1856469+01:00","value":34.3846,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:28.1856469+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:28.1856469+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:28.1856469+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:28.1856469+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:28.1856469+01:00","value":31.9878,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:28.1856469+01:00","value":2.3968,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:28.1856469+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:28.4165028+01:00","value":1047.4932,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:28.5406662+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:28.5406662+01:00","value":124.1634,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:28.5406662+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:28.5406662+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:28.5406662+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:28.5406662+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:28.5406662+01:00","value":123.9706,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:28.5406662+01:00","value":0.1928,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:28.5406662+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:28.5561983+01:00","value":2,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:28.5561983+01:00","value":5,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:28.6637492+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:28.6637492+01:00","value":37.9805,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:28.6637492+01:00","value":54.0433,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:28.6637492+01:00","value":25.0226,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:28.6637492+01:00","value":29.0207,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:28.6637492+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:28.6637492+01:00","value":35.0222,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:28.6637492+01:00","value":2.9583,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:28.6637492+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:29.1945502+01:00","value":1043.2879,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:29.3224413+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:29.3224413+01:00","value":127.8911,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:29.3224413+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:29.3224413+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:29.3224413+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:29.3224413+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:29.3224413+01:00","value":126.8919,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:29.3224413+01:00","value":0.9992,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:29.3224413+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:29.5545014+01:00","value":1137.9986,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:29.5545014+01:00","value":265,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:29.5545014+01:00","value":28365,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:29.5545014+01:00","value":2185.4918,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:29.5545014+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:29.5698826+01:00","value":3,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:29.5698826+01:00","value":5,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:29.5888576+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:29.5888576+01:00","value":34.3562,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:29.5888576+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:29.5888576+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:29.5888576+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:29.5888576+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:29.5888576+01:00","value":30.3973,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:29.5888576+01:00","value":3.9589,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:29.5888576+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:29.6777664+01:00","value":1106.041,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:29.9817012+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:29.9817012+01:00","value":303.9348,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:29.9817012+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:29.9817012+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:29.9817012+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:29.9817012+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:29.9817012+01:00","value":303.55,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:29.9817012+01:00","value":0.3848,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:29.9817012+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:30.335316+01:00","value":1140.7658,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:30.335316+01:00","value":313,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:30.335316+01:00","value":28365,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:30.335316+01:00","value":2184.0537,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:30.335316+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:30.37059+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:30.37059+01:00","value":35.274,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:30.37059+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:30.37059+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:30.37059+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:30.37059+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:30.37059+01:00","value":32.6242,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:30.37059+01:00","value":2.6498,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:30.37059+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:30.5565242+01:00","value":3,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:30.5565242+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:30.6030941+01:00","value":1048.5927,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:30.7297821+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:30.7297821+01:00","value":126.688,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:30.7297821+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:30.7297821+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:30.7297821+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:30.7297821+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:30.7297821+01:00","value":126.688,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:30.7297821+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:30.7297821+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:30.9927464+01:00","value":1314.98,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:30.9927464+01:00","value":854,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:30.9927464+01:00","value":34773,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:30.9927464+01:00","value":2421.021,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:30.9927464+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:31.0296096+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:31.0296096+01:00","value":36.8632,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:31.0296096+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:31.0296096+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:31.0296096+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:31.0296096+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:31.0296096+01:00","value":33.0587,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:31.0296096+01:00","value":3.8045,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:31.0296096+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:31.3835018+01:00","value":1048.1858,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:31.5101171+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:31.5101171+01:00","value":126.6153,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:31.5101171+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:31.5101171+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:31.5101171+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:31.5101171+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:31.5101171+01:00","value":126.6153,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:31.5101171+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:31.5101171+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:31.5709047+01:00","value":3,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:31.5709047+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:31.7446496+01:00","value":1141.5555,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:31.7446496+01:00","value":383,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:31.7446496+01:00","value":28251,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:31.7446496+01:00","value":2190.1482,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:31.7446496+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:31.777725+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:31.777725+01:00","value":33.0754,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:31.777725+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:31.777725+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:31.777725+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:31.777725+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:31.777725+01:00","value":30.9923,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:31.777725+01:00","value":2.0831,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:31.777725+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:32.0440703+01:00","value":1051.3239,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:32.1670858+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:32.1670858+01:00","value":123.0155,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:32.1670858+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:32.1670858+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:32.1670858+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:32.1670858+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:32.1670858+01:00","value":123.0155,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:32.1670858+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:32.1670858+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:32.5142658+01:00","value":1130.764,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:32.5142658+01:00","value":313,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:32.5142658+01:00","value":29148,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:32.5142658+01:00","value":2178.9498,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:32.5142658+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:32.5485839+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:32.5485839+01:00","value":34.1752,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:32.5485839+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:32.5485839+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:32.5485839+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:32.5485839+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:32.5485839+01:00","value":32.0568,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:32.5485839+01:00","value":2.1184,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:32.5485839+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:32.5605969+01:00","value":3,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:32.5605969+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:32.7792958+01:00","value":1034.6462,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:32.9059614+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:32.9059614+01:00","value":126.6656,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:32.9059614+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:32.9059614+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:32.9059614+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:32.9059614+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:32.9059614+01:00","value":126.153,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:32.9059614+01:00","value":0.5126,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:32.9059614+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:33.1718862+01:00","value":1127.8159,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:33.1718862+01:00","value":383,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:33.1718862+01:00","value":28561,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:33.1718862+01:00","value":2179.1398,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:33.1718862+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:33.2060796+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:33.2060796+01:00","value":34.1934,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:33.2060796+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:33.2060796+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:33.2060796+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:33.2060796+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:33.2060796+01:00","value":32.0522,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:33.2060796+01:00","value":2.1412,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:33.2060796+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:33.5516293+01:00","value":1037.3635,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:33.567234+01:00","value":3,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:33.567234+01:00","value":5,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:33.657183+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:33.657183+01:00","value":35.7809,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:33.657183+01:00","value":54.1681,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:33.657183+01:00","value":25.2249,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:33.657183+01:00","value":28.9432,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:33.657183+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:33.657183+01:00","value":32.7031,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:33.657183+01:00","value":3.0778,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:33.657183+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:33.6781767+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:33.6781767+01:00","value":126.4506,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:33.6781767+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:33.6781767+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:33.6781767+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:33.6781767+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:33.6781767+01:00","value":125.9668,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:33.6781767+01:00","value":0.4838,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:33.6781767+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:33.9115456+01:00","value":1132.2498,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:33.9115456+01:00","value":361,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:33.9115456+01:00","value":29034,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:33.9115456+01:00","value":2166.896,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:33.9115456+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:33.9470655+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:33.9470655+01:00","value":35.5199,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:33.9470655+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:33.9470655+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:33.9470655+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:33.9470655+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:33.9470655+01:00","value":33.5144,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:33.9470655+01:00","value":2.0055,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:33.9470655+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:34.2069543+01:00","value":1035.0681,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:34.3327112+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:34.3327112+01:00","value":125.7569,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:34.3327112+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:34.3327112+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:34.3327112+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:34.3327112+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:34.3327112+01:00","value":125.7569,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:34.3327112+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:34.3327112+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:34.5636394+01:00","value":4,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:34.5636394+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:34.6713309+01:00","value":1104.0969,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:34.6868792+01:00","value":1135.1531,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:34.6868792+01:00","value":361,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:34.6868792+01:00","value":28363,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:34.6868792+01:00","value":2172.6134,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:34.6868792+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:34.7209997+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:34.7209997+01:00","value":34.1205,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:34.7209997+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:34.7209997+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:34.7209997+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:34.7209997+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:34.7209997+01:00","value":31.6229,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:34.7209997+01:00","value":2.4976,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:34.7209997+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:34.7970803+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:34.7970803+01:00","value":125.7494,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:34.7970803+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:34.7970803+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:34.7970803+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:34.7970803+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:34.7970803+01:00","value":125.7494,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:34.7970803+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:34.7970803+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:34.9525282+01:00","value":1040.9826,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:35.0775688+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:35.0775688+01:00","value":124.9117,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:35.0775688+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:35.0775688+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:35.0775688+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:35.0775688+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:35.0775688+01:00","value":124.554,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:35.0775688+01:00","value":0.3577,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:35.0775688+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:35.3407834+01:00","value":1133.8291,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:35.3407834+01:00","value":313,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:35.3407834+01:00","value":28369,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:35.3407834+01:00","value":2168.8972,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:35.3407834+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:35.3756682+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:35.3756682+01:00","value":34.8848,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:35.3756682+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:35.3756682+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:35.3756682+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:35.3756682+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:35.3756682+01:00","value":32.5441,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:35.3756682+01:00","value":2.3407,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:35.3756682+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:35.5588262+01:00","value":4,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:35.5588262+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:35.7318609+01:00","value":1044.9817,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:35.8099353+01:00","value":1138.6044,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:35.8099353+01:00","value":854,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:35.8099353+01:00","value":34803,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:35.8099353+01:00","value":2242.7013,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:35.8099353+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:35.8442813+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:35.8442813+01:00","value":34.346,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:35.8442813+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:35.8442813+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:35.8442813+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:35.8442813+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:35.8442813+01:00","value":31.5993,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:35.8442813+01:00","value":2.7467,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:35.8442813+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:35.8536944+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:35.8536944+01:00","value":121.8335,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:35.8536944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:35.8536944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:35.8536944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:35.8536944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:35.8536944+01:00","value":120.9276,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:35.8536944+01:00","value":0.9059,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:35.8536944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:36.0778622+01:00","value":1125.2322,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:36.0779021+01:00","value":361,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:36.0779021+01:00","value":28257,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:36.0779021+01:00","value":2166.3565,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:36.0779021+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:36.1110322+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:36.1110322+01:00","value":33.1301,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:36.1110322+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:36.1110322+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:36.1110322+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:36.1110322+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:36.1110322+01:00","value":31.5736,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:36.1110322+01:00","value":1.5565,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:36.1110322+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:36.3764638+01:00","value":1035.6804,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:36.499944+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:36.499944+01:00","value":123.4802,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:36.499944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:36.499944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:36.499944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:36.499944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:36.499944+01:00","value":123.4802,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:36.499944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:36.499944+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:36.56414+01:00","value":4,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:36.56414+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:36.8462162+01:00","value":1036.2809,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:36.8617488+01:00","value":1129.8879,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:36.8617488+01:00","value":265,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:36.8617488+01:00","value":28257,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:36.8617488+01:00","value":2174.8696,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:36.8617488+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:36.8960399+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:36.8960399+01:00","value":34.2911,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:36.8960399+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:36.8960399+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:36.8960399+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:36.8960399+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:36.8960399+01:00","value":30.9296,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:36.8960399+01:00","value":3.3615,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:36.8960399+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:36.978406+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:36.978406+01:00","value":132.1898,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:36.978406+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:36.978406+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:36.978406+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:36.978406+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:36.978406+01:00","value":131.2847,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:36.978406+01:00","value":0.9051,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:36.978406+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:37.1258925+01:00","value":1047.9904,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:37.2494791+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:37.2494791+01:00","value":123.5866,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:37.2494791+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:37.2494791+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:37.2494791+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:37.2494791+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:37.2494791+01:00","value":123.5866,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:37.2494791+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:37.2494791+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:37.500278+01:00","value":1123.8142,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:37.500278+01:00","value":383,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:37.500278+01:00","value":29148,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:37.500278+01:00","value":2159.4946,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:37.500278+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:37.536017+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:37.536017+01:00","value":35.739,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:37.536017+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:37.536017+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:37.536017+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:37.536017+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:37.536017+01:00","value":32.5782,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:37.536017+01:00","value":3.1608,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:37.536017+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:37.563547+01:00","value":4,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:37.563547+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:37.9077528+01:00","value":1046.004,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:37.9839111+01:00","value":1137.6949,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:37.9839111+01:00","value":383,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:37.9839111+01:00","value":28543,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:37.9839111+01:00","value":2173.9758,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:37.9839111+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:38.0187947+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:38.0187947+01:00","value":34.8836,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:38.0187947+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:38.0187947+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:38.0187947+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:38.0187947+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:38.0187947+01:00","value":32.0532,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:38.0187947+01:00","value":2.8304,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:38.0187947+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:38.0326172+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:38.0326172+01:00","value":124.8644,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:38.0326172+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:38.0326172+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:38.0326172+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:38.0326172+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:38.0326172+01:00","value":124.058,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:38.0326172+01:00","value":0.8064,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:38.0326172+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:38.264908+01:00","value":1139.0155,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:38.264908+01:00","value":265,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:38.264908+01:00","value":28257,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:38.264908+01:00","value":2187.0059,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:38.264908+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:38.3008264+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:38.3008264+01:00","value":35.9184,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:38.3008264+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:38.3008264+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:38.3008264+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:38.3008264+01:00","value":0.5073,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:38.3008264+01:00","value":32.5123,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:38.3008264+01:00","value":2.8988,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:38.3008264+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:38.5452444+01:00","value":1044.9664,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:38.560752+01:00","value":4,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:38.560752+01:00","value":5,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:38.6434829+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:38.6434829+01:00","value":32.4143,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:38.6434829+01:00","value":50.3166,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:38.6434829+01:00","value":24.1488,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:38.6434829+01:00","value":26.1678,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:38.6434829+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:38.6434829+01:00","value":31.5164,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:38.6434829+01:00","value":0.8979,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:38.6434829+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:38.6856835+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:38.6856835+01:00","value":140.4391,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:38.6856835+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:38.6856835+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:38.6856835+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:38.6856835+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:38.6856835+01:00","value":140.2938,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:38.6856835+01:00","value":0.1453,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:38.6856835+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.0280882+01:00","value":1044.1771,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.0436728+01:00","value":1135.92,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:39.0436728+01:00","value":265,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:39.0436728+01:00","value":29040,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.0436728+01:00","value":2181.924,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:39.0436728+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:39.0770297+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.0770297+01:00","value":33.3569,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:39.0770297+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:39.0770297+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:39.0770297+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:39.0770297+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:39.0770297+01:00","value":30.6482,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:39.0770297+01:00","value":2.7087,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:39.0770297+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:39.1535088+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.1535088+01:00","value":125.4206,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:39.1535088+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:39.1535088+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:39.1535088+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:39.1535088+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:39.1535088+01:00","value":124.4626,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:39.1535088+01:00","value":0.958,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:39.1535088+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.3051241+01:00","value":1040.2161,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:39.4283846+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.4283846+01:00","value":123.2605,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:39.4283846+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:39.4283846+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:39.4283846+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:39.4283846+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:39.4283846+01:00","value":122.9499,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:39.4283846+01:00","value":0.3106,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:39.4283846+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:39.5700241+01:00","value":5,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:39.5700241+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.6479376+01:00","value":1087.1856,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.6954555+01:00","value":1150.2111,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:39.6954555+01:00","value":313,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:39.6954555+01:00","value":28369,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.6954555+01:00","value":2195.1775,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:39.6954555+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:39.7323966+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.7323966+01:00","value":36.9411,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:39.7323966+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:39.7323966+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:39.7323966+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:39.7323966+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:39.7323966+01:00","value":32.4388,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:39.7323966+01:00","value":4.5023,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:39.7323966+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:39.7699545+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:39.7699545+01:00","value":122.0169,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:39.7699545+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:39.7699545+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:39.7699545+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:39.7699545+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:39.7699545+01:00","value":122.0169,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:39.7699545+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:39.7699545+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.0847637+01:00","value":1041.0909,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.1624927+01:00","value":1134.4045,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:40.1624927+01:00","value":313,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:40.1624927+01:00","value":28371,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.1624927+01:00","value":2178.5816,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:40.1624927+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:40.1961141+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.1961141+01:00","value":33.6214,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:40.1961141+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:40.1961141+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:40.1961141+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:40.1961141+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:40.1961141+01:00","value":31.5115,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:40.1961141+01:00","value":2.1099,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:40.1961141+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:40.2090513+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.2090513+01:00","value":124.2876,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:40.2090513+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:40.2090513+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:40.2090513+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:40.2090513+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:40.2090513+01:00","value":123.3652,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:40.2090513+01:00","value":0.9224,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:40.2090513+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.4430419+01:00","value":1137.9178,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:40.4430419+01:00","value":361,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:40.4430419+01:00","value":29042,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.4430419+01:00","value":2178.1339,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:40.4430419+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:40.4784027+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.4784027+01:00","value":35.3608,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:40.4784027+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:40.4784027+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:40.4784027+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:40.4784027+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:40.4784027+01:00","value":33.2444,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:40.4784027+01:00","value":2.1164,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:40.4784027+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:40.5689258+01:00","value":5,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:40.5689258+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.7407932+01:00","value":1045.3377,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.7723603+01:00","value":1124.4227,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:40.7723603+01:00","value":902,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:40.7723603+01:00","value":34783,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.7723603+01:00","value":2211.6083,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:40.7723603+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:40.8046753+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.8046753+01:00","value":32.315,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:40.8046753+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:40.8046753+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:40.8046753+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:40.8046753+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:40.8046753+01:00","value":27.9272,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:40.8046753+01:00","value":4.3878,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:40.8046753+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:40.8717982+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:40.8717982+01:00","value":131.005,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:40.8717982+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:40.8717982+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:40.8717982+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:40.8717982+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:40.8717982+01:00","value":130.1324,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:40.8717982+01:00","value":0.8726,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:40.8717982+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.2073733+01:00","value":1044.8806,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.2234077+01:00","value":1138.644,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:41.2234077+01:00","value":265,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:41.2234077+01:00","value":28263,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.2234077+01:00","value":2179.7349,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:41.2234077+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:41.2581473+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.2581473+01:00","value":34.7396,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:41.2581473+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:41.2581473+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:41.2581473+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:41.2581473+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:41.2581473+01:00","value":32.5055,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:41.2581473+01:00","value":2.2341,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:41.2581473+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:41.3297116+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.3297116+01:00","value":122.3383,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:41.3297116+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:41.3297116+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:41.3297116+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:41.3297116+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:41.3297116+01:00","value":122.3383,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:41.3297116+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:41.3297116+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.4870409+01:00","value":1043.999,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:41.5641401+01:00","value":5,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:41.5641401+01:00","value":5,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:41.6095478+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.6095478+01:00","value":122.5069,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:41.6095478+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:41.6095478+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:41.6095478+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:41.6095478+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:41.6095478+01:00","value":122.5069,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:41.6095478+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:41.6095478+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.8172778+01:00","value":1044.9175,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.8786498+01:00","value":1137.8566,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:41.8786498+01:00","value":361,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:41.8786498+01:00","value":28263,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.8786498+01:00","value":2183.1943,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:41.8786498+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:41.9129259+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.9129259+01:00","value":34.2761,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:41.9129259+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:41.9129259+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:41.9129259+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:41.9129259+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:41.9129259+01:00","value":31.8727,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:41.9129259+01:00","value":2.4034,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:41.9129259+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:41.9421913+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:41.9421913+01:00","value":124.9135,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:41.9421913+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:41.9421913+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:41.9421913+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:41.9421913+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:41.9421913+01:00","value":124.6673,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:41.9421913+01:00","value":0.2462,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:41.9421913+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.2692801+01:00","value":1045.8724,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.3327419+01:00","value":1125.3686,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:42.3327419+01:00","value":313,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:42.3327419+01:00","value":29146,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.3327419+01:00","value":2170.2492,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:42.3327419+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:42.3686287+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.3686287+01:00","value":35.8868,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:42.3686287+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:42.3686287+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:42.3686287+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:42.3686287+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:42.3686287+01:00","value":33.5612,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:42.3686287+01:00","value":2.3256,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:42.3686287+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:42.3921773+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.3921773+01:00","value":122.8972,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:42.3921773+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:42.3921773+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:42.3921773+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:42.3921773+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:42.3921773+01:00","value":121.9894,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:42.3921773+01:00","value":0.9078,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:42.3921773+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:42.5648649+01:00","value":5,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:42.5648649+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.6124298+01:00","value":1125.3889,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:42.6124298+01:00","value":265,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:42.6124298+01:00","value":28255,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.6124298+01:00","value":2169.3879,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:42.6124298+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:42.6494473+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.6494473+01:00","value":37.0175,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:42.6494473+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:42.6494473+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:42.6494473+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:42.6494473+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:42.6494473+01:00","value":34.0164,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:42.6494473+01:00","value":3.0011,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:42.6494473+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.9258805+01:00","value":1047.2307,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.9566693+01:00","value":1139.3915,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:42.9566693+01:00","value":361,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:42.9566693+01:00","value":28563,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.9566693+01:00","value":2184.309,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:42.9566693+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:42.9912653+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:42.9912653+01:00","value":34.596,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:42.9912653+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:42.9912653+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:42.9912653+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:42.9912653+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:42.9912653+01:00","value":31.0505,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:42.9912653+01:00","value":3.5455,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:42.9912653+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:43.0498111+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:43.0498111+01:00","value":123.9306,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:43.0498111+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:43.0498111+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:43.0498111+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:43.0498111+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:43.0498111+01:00","value":123.9306,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:43.0498111+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:43.0498111+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:43.3770118+01:00","value":1044.2699,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:43.39304+01:00","value":1123.7599,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:43.39304+01:00","value":361,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:43.39304+01:00","value":28259,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:43.39304+01:00","value":2169.6323,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:43.39304+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:43.4272908+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:43.4272908+01:00","value":34.2508,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:43.4272908+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:43.4272908+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:43.4272908+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:43.4272908+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:43.4272908+01:00","value":31.5595,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:43.4272908+01:00","value":2.6913,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:43.4272908+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:43.5024641+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:43.5024641+01:00","value":125.4523,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:43.5024641+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:43.5024641+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:43.5024641+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:43.5024641+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:43.5024641+01:00","value":124.483,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:43.5024641+01:00","value":0.9693,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:43.5024641+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:43.5635396+01:00","value":5,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:43.5635396+01:00","value":5,"tags":{}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:43.6577792+01:00","value":1045.3494,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:43.7896816+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:43.7896816+01:00","value":131.9024,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:43.7896816+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:43.7896816+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:43.7896816+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:43.7896816+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:43.7896816+01:00","value":131.4296,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:43.7896816+01:00","value":0.4728,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:43.7896816+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.0004439+01:00","value":1043.7746,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.0616739+01:00","value":1135.7934,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:44.0616739+01:00","value":265,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:44.0616739+01:00","value":29040,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.0616739+01:00","value":2183.0241,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:44.0616739+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:44.0948319+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.0948319+01:00","value":33.158,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:44.0948319+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:44.0948319+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:44.0948319+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:44.0948319+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:44.0948319+01:00","value":30.5134,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:44.0948319+01:00","value":2.6446,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:44.0948319+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:44.1254412+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.1254412+01:00","value":124.9973,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:44.1254412+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:44.1254412+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:44.1254412+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:44.1254412+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:44.1254412+01:00","value":124.8987,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:44.1254412+01:00","value":0.0986,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:44.1254412+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.434803+01:00","value":1041.763,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.5144429+01:00","value":1137.4311,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:44.5144429+01:00","value":313,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:44.5144429+01:00","value":28369,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.5144429+01:00","value":2181.701,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:44.5144429+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:44.547389+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.547389+01:00","value":32.9461,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:44.547389+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:44.547389+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:44.547389+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:44.547389+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:44.547389+01:00","value":30.5116,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:44.547389+01:00","value":2.4345,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:44.547389+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"vus","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":5,"tags":{}}}
{"metric":"vus_max","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":5,"tags":{}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":126.093,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":126.093,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:44.560896+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.795488+01:00","value":1137.7088,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:44.795488+01:00","value":265,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:44.795488+01:00","value":28259,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.795488+01:00","value":2183.0582,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:44.795488+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:44.8286306+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:44.8286306+01:00","value":33.1426,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:44.8286306+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:44.8286306+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:44.8286306+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:44.8286306+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:44.8286306+01:00","value":31.5141,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:44.8286306+01:00","value":1.6285,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:44.8286306+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:45.1061814+01:00","value":1044.5075,"tags":{"group":"::Get Posts","scenario":"embeddables"}}}
{"metric":"group_duration","type":"Point","data":{"time":"2023-12-25T15:30:45.1377261+01:00","value":1137.2822,"tags":{"group":"::Create Posts","scenario":"embeddables"}}}
{"metric":"data_sent","type":"Point","data":{"time":"2023-12-25T15:30:45.1377261+01:00","value":361,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"data_received","type":"Point","data":{"time":"2023-12-25T15:30:45.1377261+01:00","value":28369,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iteration_duration","type":"Point","data":{"time":"2023-12-25T15:30:45.1377261+01:00","value":2181.0568,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"iterations","type":"Point","data":{"time":"2023-12-25T15:30:45.1377261+01:00","value":1,"tags":{"group":"","scenario":"embeddables"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:45.1695379+01:00","value":1,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:45.1695379+01:00","value":31.8118,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:45.1695379+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:45.1695379+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:45.1695379+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:45.1695379+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:45.1695379+01:00","value":30.0169,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:45.1695379+01:00","value":1.7949,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:45.1695379+01:00","value":0,"tags":{"expected_response":"true","group":"::Get Posts","method":"GET","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"200","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_reqs","type":"Point","data":{"time":"2023-12-25T15:30:45.2312915+01:00","value":1,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_duration","type":"Point","data":{"time":"2023-12-25T15:30:45.2312915+01:00","value":125.1101,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_blocked","type":"Point","data":{"time":"2023-12-25T15:30:45.2312915+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_connecting","type":"Point","data":{"time":"2023-12-25T15:30:45.2312915+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_tls_handshaking","type":"Point","data":{"time":"2023-12-25T15:30:45.2312915+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_sending","type":"Point","data":{"time":"2023-12-25T15:30:45.2312915+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_waiting","type":"Point","data":{"time":"2023-12-25T15:30:45.2312915+01:00","value":124.9216,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_receiving","type":"Point","data":{"time":"2023-12-25T15:30:45.2312915+01:00","value":0.1885,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}
{"metric":"http_req_failed","type":"Point","data":{"time":"2023-12-25T15:30:45.2312915+01:00","value":0,"tags":{"expected_response":"true","group":"::Create Posts","method":"POST","name":"https://jsonplaceholder.typicode.com/posts","proto":"HTTP/2.0","scenario":"embeddables","status":"201","tls_version":"tls1.3","url":"https://jsonplaceholder.typicode.com/posts"}}}