-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.log
3422 lines (3368 loc) · 773 KB
/
example.log
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
23:45:04.137 [main] INFO com.example.Application - Starting Application v0.0.1-SNAPSHOT using Java 1.8.0_212 on 79c9ff384115 with PID 1 (/target/websockets-0.0.1-SNAPSHOT.jar started by root in /)
23:45:04.144 [main] DEBUG com.example.Application - Running with Spring Boot v2.7.6, Spring v5.3.24
23:45:04.145 [main] INFO com.example.Application - No active profile set, falling back to 1 default profile: "default"
23:45:06.068 [main] DEBUG org.eclipse.jetty.util.log - Logging to Logger[org.eclipse.jetty.util.log] via org.eclipse.jetty.util.log.Slf4jLog
23:45:06.077 [main] INFO org.eclipse.jetty.util.log - Logging initialized @4453ms to org.eclipse.jetty.util.log.Slf4jLog
23:45:06.088 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - QueuedThreadPool[qtp2076287037]@7bc1a03d{STOPPED,8<=0<=200,i=0,r=-1,q=0}[NO_TRY] added {org.eclipse.jetty.util.thread.ThreadPoolBudget@70b0b186,POJO}
23:45:06.261 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{/,null,STOPPED} added {SymlinkAllowedResourceAliasChecker@57d5872c{base=null,protected=null},MANAGED}
23:45:06.263 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Adding Decorator: org.eclipse.jetty.util.DeprecationWarning@667a738
23:45:06.278 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{/,null,STOPPED} added {org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=-1,MANAGED}
23:45:06.289 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ConstraintSecurityHandler@67e2d983{STOPPED} added {org.eclipse.jetty.util.component.DumpableCollection@5d47c63f,POJO}
23:45:06.291 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=-1 added {ConstraintSecurityHandler@67e2d983{STOPPED},MANAGED}
23:45:06.303 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ConstraintSecurityHandler@67e2d983{STOPPED} added {JettyEmbeddedServletHandler@5ea434c8{STOPPED},MANAGED}
23:45:06.303 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{/,null,STOPPED} added {ErrorPageErrorHandler@3bbc39f8{STOPPED},MANAGED}
23:45:06.314 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - Server@29f69090{STOPPED}[9.4.49.v20220914] added {QueuedThreadPool[qtp2076287037]@7bc1a03d{STOPPED,8<=0<=200,i=0,r=-1,q=0}[NO_TRY],AUTO}
23:45:06.342 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - HttpConnectionFactory@1b083826[HTTP/1.1] added {HttpConfiguration@105fece7{32768/8192,8192/8192,https://:0,[]},POJO}
23:45:06.370 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3ec300f1{null, ()}{0.0.0.0:0} added {Server@29f69090{STOPPED}[9.4.49.v20220914],UNMANAGED}
23:45:06.371 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3ec300f1{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp2076287037]@7bc1a03d{STOPPED,8<=0<=200,i=0,r=-1,q=0}[NO_TRY],AUTO}
23:45:06.371 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3ec300f1{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@2893de87{STOPPED},AUTO}
23:45:06.372 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3ec300f1{null, ()}{0.0.0.0:0} added {ArrayByteBufferPool@55ca8de8{minBufferCapacity=0, maxBufferCapacity=65536, maxQueueLength=-1, factor=1024},POJO}
23:45:06.372 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3ec300f1{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@1b083826[HTTP/1.1],AUTO}
23:45:06.372 [main] DEBUG o.e.jetty.server.AbstractConnector - ServerConnector@3ec300f1{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@1b083826[HTTP/1.1]
23:45:06.376 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3ec300f1{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@ServerConnector@3ec300f1{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED}
23:45:06.377 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - Server@29f69090{STOPPED}[9.4.49.v20220914] added {ServerConnector@3ec300f1{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO}
23:45:06.407 [main] DEBUG org.eclipse.jetty.server.session - SessionManager default maxInactiveInterval=1800
23:45:06.408 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - Server@29f69090{STOPPED}[9.4.49.v20220914] added {o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STOPPED},MANAGED}
23:45:06.408 [main] INFO o.s.b.w.e.j.JettyServletWebServerFactory - Server initialized with port: 8080
23:45:06.409 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - HttpConnectionFactory@f2f2cc1[HTTP/1.1] added {HttpConfiguration@3a079870{32768/8192,8192/8192,https://:0,[]},POJO}
23:45:06.413 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3b2cf7ab{null, ()}{0.0.0.0:0} added {Server@29f69090{STOPPED}[9.4.49.v20220914],UNMANAGED}
23:45:06.413 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3b2cf7ab{null, ()}{0.0.0.0:0} added {QueuedThreadPool[qtp2076287037]@7bc1a03d{STOPPED,8<=0<=200,i=0,r=-1,q=0}[NO_TRY],AUTO}
23:45:06.413 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3b2cf7ab{null, ()}{0.0.0.0:0} added {ScheduledExecutorScheduler@2aa5fe93{STOPPED},AUTO}
23:45:06.413 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3b2cf7ab{null, ()}{0.0.0.0:0} added {ArrayByteBufferPool@5c1a8622{minBufferCapacity=0, maxBufferCapacity=65536, maxQueueLength=-1, factor=1024},POJO}
23:45:06.414 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3b2cf7ab{null, (http/1.1)}{0.0.0.0:0} added {HttpConnectionFactory@f2f2cc1[HTTP/1.1],AUTO}
23:45:06.414 [main] DEBUG o.e.jetty.server.AbstractConnector - ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added HttpConnectionFactory@f2f2cc1[HTTP/1.1]
23:45:06.414 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:0} added {SelectorManager@ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:0},MANAGED}
23:45:06.414 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - Server@29f69090{STOPPED}[9.4.49.v20220914] added {ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},AUTO}
23:45:06.415 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting Server@29f69090{STOPPED}[9.4.49.v20220914]
23:45:06.415 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - Server@29f69090{STARTING}[9.4.49.v20220914] added {ErrorHandler@5ad851c9{STOPPED},AUTO}
23:45:06.416 [main] INFO org.eclipse.jetty.server.Server - jetty-9.4.49.v20220914; built: 2022-09-14T01:07:36.601Z; git: 4231a3b2e4cb8548a412a789936d640a97b1aa0a; jvm 1.8.0_212-b04
23:45:06.443 [main] DEBUG o.e.j.server.handler.AbstractHandler - starting Server@29f69090{STARTING}[9.4.49.v20220914]
23:45:06.443 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting QueuedThreadPool[qtp2076287037]@7bc1a03d{STOPPED,8<=0<=200,i=0,r=-1,q=0}[NO_TRY]
23:45:06.450 [main] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}
23:45:06.451 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTING,8<=0<=200,i=0,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}] added {ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0},AUTO}
23:45:06.451 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}
23:45:06.452 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @4828ms ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}
23:45:06.453 [main] DEBUG o.e.j.util.thread.QueuedThreadPool - Starting Thread[qtp2076287037-12,5,main]
23:45:06.456 [main] DEBUG o.e.j.util.thread.QueuedThreadPool - Starting Thread[qtp2076287037-13,5,main]
23:45:06.456 [qtp2076287037-12] DEBUG o.e.j.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTING,8<=2<=200,i=2,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:06.457 [main] DEBUG o.e.j.util.thread.QueuedThreadPool - Starting Thread[qtp2076287037-14,5,main]
23:45:06.457 [qtp2076287037-13] DEBUG o.e.j.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTING,8<=3<=200,i=3,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:06.457 [main] DEBUG o.e.j.util.thread.QueuedThreadPool - Starting Thread[qtp2076287037-15,5,main]
23:45:06.457 [qtp2076287037-14] DEBUG o.e.j.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTING,8<=4<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:06.460 [main] DEBUG o.e.j.util.thread.QueuedThreadPool - Starting Thread[qtp2076287037-16,5,main]
23:45:06.461 [qtp2076287037-15] DEBUG o.e.j.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTING,8<=5<=200,i=5,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:06.461 [main] DEBUG o.e.j.util.thread.QueuedThreadPool - Starting Thread[qtp2076287037-17,5,main]
23:45:06.468 [qtp2076287037-16] DEBUG o.e.j.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTING,8<=6<=200,i=6,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:06.468 [main] DEBUG o.e.j.util.thread.QueuedThreadPool - Starting Thread[qtp2076287037-18,5,main]
23:45:06.469 [qtp2076287037-17] DEBUG o.e.j.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTING,8<=7<=200,i=7,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:06.469 [main] DEBUG o.e.j.util.thread.QueuedThreadPool - Starting Thread[qtp2076287037-19,5,main]
23:45:06.469 [qtp2076287037-18] DEBUG o.e.j.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTING,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:06.469 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @4845ms QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:06.469 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STOPPED}
23:45:06.475 [qtp2076287037-19] DEBUG o.e.j.util.thread.QueuedThreadPool - Runner started for QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:06.481 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - Thread Context classloader org.springframework.boot.loader.LaunchedURLClassLoader@31221be2
23:45:06.481 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - Parent class loader: sun.misc.Launcher$AppClassLoader@70dea4e
23:45:06.481 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - Parent class loader: sun.misc.Launcher$ExtClassLoader@71c8becc
23:45:06.481 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - preConfigure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STOPPED} with org.springframework.boot.web.embedded.jetty.ServletContextInitializerConfiguration@19d37183
23:45:06.482 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - preConfigure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STOPPED} with org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory$1@1a0dcaa
23:45:06.482 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - preConfigure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STOPPED} with org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory$2@3bd40a57
23:45:06.482 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - preConfigure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STOPPED} with org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory$WebListenersConfiguration@fdefd3f
23:45:06.482 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - preConfigure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STOPPED} with org.springframework.boot.autoconfigure.websocket.servlet.JettyWebSocketServletWebServerCustomizer$1@d83da2e
23:45:06.485 [main] DEBUG o.e.jetty.http.PreEncodedHttpField - HttpField encoders loaded: [org.eclipse.jetty.http.Http1FieldPreEncoder@a4102b8]
23:45:06.503 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - configure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING} with org.springframework.boot.web.embedded.jetty.ServletContextInitializerConfiguration@19d37183
23:45:06.509 [main] INFO o.e.j.s.h.ContextHandler.application - Initializing Spring embedded WebApplicationContext
23:45:06.510 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2266 ms
23:45:06.884 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {characterEncodingFilter==org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@12b0404f{inst=false,async=false,src=JAVAX_API:null},AUTO}
23:45:06.894 [main] DEBUG org.eclipse.jetty.util.TypeUtil - This JVM Runtime does not support Modules, disabling Jetty internal support
23:45:06.895 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {[/*]/[]/[FORWARD, REQUEST, INCLUDE, ASYNC, ERROR]=>characterEncodingFilter,POJO}
23:45:06.896 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {formContentFilter==org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@12e61fe6{inst=false,async=false,src=JAVAX_API:null},AUTO}
23:45:06.899 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {[/*]/[]/[FORWARD, REQUEST, INCLUDE, ASYNC, ERROR]=>formContentFilter,POJO}
23:45:06.899 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {requestContextFilter==org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7ee955a8{inst=false,async=false,src=JAVAX_API:null},AUTO}
23:45:06.904 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {[/*]/[]/[FORWARD, REQUEST, INCLUDE, ASYNC, ERROR]=>requestContextFilter,POJO}
23:45:06.905 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {springSecurityFilterChain==org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean$1@1677d1{inst=false,async=false,src=JAVAX_API:null},AUTO}
23:45:06.905 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {[/*]/[]/[REQUEST, ASYNC, ERROR]=>springSecurityFilterChain,POJO}
23:45:06.905 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {errorPageSecurityFilter==org.springframework.boot.web.servlet.filter.ErrorPageSecurityFilter@48fa0f47{inst=false,async=false,src=JAVAX_API:null},AUTO}
23:45:06.906 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {[/*]/[]/[ERROR]=>errorPageSecurityFilter,POJO}
23:45:06.907 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=false,async=false,src=JAVAX_API:null,STOPPED},AUTO}
23:45:06.908 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {[/]=>dispatcherServlet,POJO}
23:45:06.909 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - configure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING} with org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory$1@1a0dcaa
23:45:06.910 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING} added {JettyEmbeddedErrorHandler@6ac13091{STOPPED},MANAGED}
23:45:06.910 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - configure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING} with org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory$2@3bd40a57
23:45:06.911 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - configure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING} with org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory$WebListenersConfiguration@fdefd3f
23:45:06.911 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - configure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING} with org.springframework.boot.autoconfigure.websocket.servlet.JettyWebSocketServletWebServerCustomizer$1@d83da2e
23:45:06.934 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting DeflaterPool@7f010382{STOPPED,size=0,capacity=200}
23:45:06.934 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5310ms DeflaterPool@7f010382{STARTED,size=0,capacity=200}
23:45:06.934 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - Server@29f69090{STARTING}[9.4.49.v20220914] added {DeflaterPool@7f010382{STARTED,size=0,capacity=200},MANAGED}
23:45:06.934 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting InflaterPool@1e802ef9{STOPPED,size=0,capacity=200}
23:45:06.934 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5311ms InflaterPool@1e802ef9{STARTED,size=0,capacity=200}
23:45:06.934 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - Server@29f69090{STARTING}[9.4.49.v20220914] added {InflaterPool@1e802ef9{STARTED,size=0,capacity=200},MANAGED}
23:45:06.948 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketExtensionFactory@2b6faea6{STOPPED} added {InflaterPool@1e802ef9{STARTED,size=0,capacity=200},UNMANAGED}
23:45:06.952 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketExtensionFactory@2b6faea6{STOPPED} added {DeflaterPool@7f010382{STARTED,size=0,capacity=200},UNMANAGED}
23:45:06.958 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketServerFactory@4313f5bc[defaultPolicy=WebSocketPolicy@778d1062[behavior=SERVER,maxTextMessageSize=65536,maxTextMessageBufferSize=32768,maxBinaryMessageSize=65536,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=300000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory] added {MappedByteBufferPool@670002{maxQueueLength=-1, factor=1024},POJO}
23:45:06.958 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketServerFactory@4313f5bc[defaultPolicy=WebSocketPolicy@778d1062[behavior=SERVER,maxTextMessageSize=65536,maxTextMessageBufferSize=32768,maxBinaryMessageSize=65536,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=300000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory] added {ScheduledExecutorScheduler@1f0f1111{STOPPED},AUTO}
23:45:06.958 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketServerFactory@4313f5bc[defaultPolicy=WebSocketPolicy@778d1062[behavior=SERVER,maxTextMessageSize=65536,maxTextMessageBufferSize=32768,maxBinaryMessageSize=65536,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=300000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory] added {SessionTracker@49c386c8{STOPPED},AUTO}
23:45:06.958 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketServerFactory@4313f5bc[defaultPolicy=WebSocketPolicy@778d1062[behavior=SERVER,maxTextMessageSize=65536,maxTextMessageBufferSize=32768,maxBinaryMessageSize=65536,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=300000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory] added {WebSocketExtensionFactory@2b6faea6{STOPPED},AUTO}
23:45:06.959 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - NativeWebSocketConfiguration@5ccddd20{STOPPED} added {WebSocketServerFactory@4313f5bc[defaultPolicy=WebSocketPolicy@778d1062[behavior=SERVER,maxTextMessageSize=65536,maxTextMessageBufferSize=32768,maxBinaryMessageSize=65536,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=300000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory],AUTO}
23:45:06.960 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - NativeWebSocketConfiguration@5ccddd20{STOPPED} added {PathMappings[size=0],POJO}
23:45:06.960 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING} added {NativeWebSocketConfiguration@5ccddd20{STOPPED},MANAGED}
23:45:06.960 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting NativeWebSocketConfiguration@5ccddd20{STOPPED}
23:45:06.960 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting WebSocketServerFactory@4313f5bc[defaultPolicy=WebSocketPolicy@778d1062[behavior=SERVER,maxTextMessageSize=65536,maxTextMessageBufferSize=32768,maxBinaryMessageSize=65536,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=300000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory]
23:45:06.960 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@1f0f1111{STOPPED}
23:45:06.960 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5336ms ScheduledExecutorScheduler@1f0f1111{STARTED}
23:45:06.960 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting SessionTracker@49c386c8{STOPPED}
23:45:06.960 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5336ms SessionTracker@49c386c8{STARTED}
23:45:06.960 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting WebSocketExtensionFactory@2b6faea6{STOPPED}
23:45:06.967 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5336ms WebSocketExtensionFactory@2b6faea6{STARTED}
23:45:06.967 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5343ms WebSocketServerFactory@4313f5bc[defaultPolicy=WebSocketPolicy@778d1062[behavior=SERVER,maxTextMessageSize=65536,maxTextMessageBufferSize=32768,maxBinaryMessageSize=65536,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=300000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory]
23:45:06.967 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5343ms NativeWebSocketConfiguration@5ccddd20{STARTED}
23:45:06.985 [main] DEBUG o.e.j.w.jsr356.JsrSessionFactory - Container: ServerContainer@3cc2931c{STOPPED}
23:45:07.015 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - HttpClient@65466a6a{STOPPED} added {HttpClientTransportOverHTTP@4ddced80{STOPPED},AUTO}
23:45:07.016 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - HttpClient@65466a6a{STOPPED} added {Client@1534f01b[provider=null,keyStore=null,trustStore=null],AUTO}
23:45:07.016 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - HttpClient@65466a6a{STOPPED} added {org.eclipse.jetty.client.ProtocolHandlers@78e117e3,POJO}
23:45:07.017 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - HttpClient@65466a6a{STOPPED} added {org.eclipse.jetty.client.HttpClient$ContentDecoderFactorySet@2ea227af,POJO}
23:45:07.017 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - HttpClient@65466a6a{STOPPED} added {QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}],UNMANAGED}
23:45:07.018 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - HttpClient@65466a6a{STOPPED} added {MappedByteBufferPool@670002{maxQueueLength=-1, factor=1024},POJO}
23:45:07.020 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketClient@4386e697[httpClient=HttpClient@65466a6a{STOPPED},openSessions.size=0] added {HttpClient@65466a6a{STOPPED},AUTO}
23:45:07.020 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketClient@4386e697[httpClient=HttpClient@65466a6a{STOPPED},openSessions.size=0] added {SessionTracker@4386f16{STOPPED},AUTO}
23:45:07.022 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketExtensionFactory@3eb7fc54{STOPPED} added {InflaterPool@7f552bd3{STOPPED,size=0,capacity=UNLIMITED},AUTO}
23:45:07.025 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketExtensionFactory@3eb7fc54{STOPPED} added {DeflaterPool@3c22fc4c{STOPPED,size=0,capacity=UNLIMITED},AUTO}
23:45:07.026 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketClient@8993f0ee[httpClient=HttpClient@65466a6a{STOPPED},openSessions.size=0] added {WebSocketExtensionFactory@3eb7fc54{STOPPED},AUTO}
23:45:07.047 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerContainer@3cc2931c{STOPPED} added {JsrSessionTracker@49b0b76{STOPPED},AUTO}
23:45:07.052 [main] DEBUG o.e.j.w.jsr356.JsrSessionFactory - Container: ServerContainer@3cc2931c{STOPPED}
23:45:07.052 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerContainer@3cc2931c{STOPPED} added {NativeWebSocketConfiguration@5ccddd20{STARTED},UNMANAGED}
23:45:07.053 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING} added {ServerContainer@3cc2931c{STOPPED},AUTO}
23:45:07.054 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {Jetty_WebSocketUpgradeFilter==org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter@769f71a9{inst=false,async=true,src=EMBEDDED:null},AUTO}
23:45:07.056 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - JettyEmbeddedServletHandler@5ea434c8{STOPPED} added {[/*]/[]/[REQUEST]=>Jetty_WebSocketUpgradeFilter,POJO}
23:45:07.057 [main] DEBUG o.e.j.w.s.WebSocketUpgradeFilter - Adding [Jetty_WebSocketUpgradeFilter] WebSocketUpgradeFilter[configuration=null] mapped to /* to o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING}
23:45:07.057 [main] DEBUG org.eclipse.jetty.webapp.MetaData - metadata resolve o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING}
23:45:07.058 [main] DEBUG o.e.j.server.handler.AbstractHandler - starting o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],STARTING}
23:45:07.058 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800
23:45:07.066 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800 added {org.eclipse.jetty.server.session.DefaultSessionCache@49d904ec[evict=-1,removeUnloadable=false,saveOnCreate=false,saveOnInactiveEvict=false],AUTO}
23:45:07.067 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - org.eclipse.jetty.server.session.DefaultSessionCache@49d904ec[evict=-1,removeUnloadable=false,saveOnCreate=false,saveOnInactiveEvict=false] added {org.eclipse.jetty.server.session.NullSessionDataStore@48e4374[passivating=false,graceSec=3600],AUTO}
23:45:07.068 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting DefaultSessionIdManager@3d680b5a{STOPPED}[worker=null]
23:45:07.068 [main] INFO org.eclipse.jetty.server.session - DefaultSessionIdManager workerName=node0
23:45:07.068 [main] INFO org.eclipse.jetty.server.session - No SessionScavenger set, using defaults
23:45:07.069 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - DefaultSessionIdManager@3d680b5a{STARTING}[worker=node0] added {HouseKeeper@4b5d6a01{STOPPED}[interval=600000, ownscheduler=false],MANAGED}
23:45:07.069 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting HouseKeeper@4b5d6a01{STOPPED}[interval=600000, ownscheduler=false]
23:45:07.069 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@4a22f9e2{STOPPED}
23:45:07.069 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5445ms ScheduledExecutorScheduler@4a22f9e2{STARTED}
23:45:07.069 [main] DEBUG org.eclipse.jetty.server.session - Using own scheduler for scavenging
23:45:07.070 [main] INFO org.eclipse.jetty.server.session - node0 Scavenging every 600000ms
23:45:07.077 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5453ms HouseKeeper@4b5d6a01{STARTED}[interval=600000, ownscheduler=true]
23:45:07.077 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5453ms DefaultSessionIdManager@3d680b5a{STARTED}[worker=node0]
23:45:07.077 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - Server@29f69090{STARTING}[9.4.49.v20220914] added {DefaultSessionIdManager@3d680b5a{STARTED}[worker=node0],MANAGED}
23:45:07.077 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800 added {DefaultSessionIdManager@3d680b5a{STARTED}[worker=node0],UNMANAGED}
23:45:07.077 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@418e7838{STOPPED}
23:45:07.077 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5453ms ScheduledExecutorScheduler@418e7838{STARTED}
23:45:07.077 [main] DEBUG o.e.j.server.handler.AbstractHandler - starting org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800
23:45:07.077 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ConstraintSecurityHandler@67e2d983{STOPPED}
23:45:07.079 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ConstraintSecurityHandler@67e2d983{STARTING} added {org.eclipse.jetty.security.DefaultIdentityService@3e2e18f2,POJO}
23:45:07.079 [main] DEBUG o.e.j.server.handler.AbstractHandler - starting ConstraintSecurityHandler@67e2d983{STARTING}
23:45:07.079 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting JettyEmbeddedServletHandler@5ea434c8{STOPPED}
23:45:07.080 [main] DEBUG o.e.jetty.servlet.ServletHandler - Path=/[JAVAX_API:null] mapped to servlet=dispatcherServlet[JAVAX_API:null]
23:45:07.082 [main] DEBUG o.e.jetty.http.pathmap.PathMappings - Added MappedResource[pathSpec=ServletPathSpec@9457dcb7{/},resource=dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=false,async=true,src=JAVAX_API:null,STOPPED}] to PathMappings[size=1]
23:45:07.083 [main] DEBUG o.e.jetty.servlet.ServletHandler - filterNameMap={requestContextFilter=requestContextFilter==org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7ee955a8{inst=false,async=true,src=JAVAX_API:null}, errorPageSecurityFilter=errorPageSecurityFilter==org.springframework.boot.web.servlet.filter.ErrorPageSecurityFilter@48fa0f47{inst=false,async=true,src=JAVAX_API:null}, Jetty_WebSocketUpgradeFilter=Jetty_WebSocketUpgradeFilter==org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter@769f71a9{inst=false,async=true,src=EMBEDDED:null}, characterEncodingFilter=characterEncodingFilter==org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@12b0404f{inst=false,async=true,src=JAVAX_API:null}, springSecurityFilterChain=springSecurityFilterChain==org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean$1@1677d1{inst=false,async=true,src=JAVAX_API:null}, formContentFilter=formContentFilter==org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@12e61fe6{inst=false,async=true,src=JAVAX_API:null}}
23:45:07.083 [main] DEBUG o.e.jetty.servlet.ServletHandler - pathFilters=[[/*]/[]/[REQUEST]=>Jetty_WebSocketUpgradeFilter, [/*]/[]/[ERROR]=>errorPageSecurityFilter, [/*]/[]/[REQUEST, ASYNC, ERROR]=>springSecurityFilterChain, [/*]/[]/[FORWARD, REQUEST, INCLUDE, ASYNC, ERROR]=>requestContextFilter, [/*]/[]/[FORWARD, REQUEST, INCLUDE, ASYNC, ERROR]=>formContentFilter, [/*]/[]/[FORWARD, REQUEST, INCLUDE, ASYNC, ERROR]=>characterEncodingFilter]
23:45:07.083 [main] DEBUG o.e.jetty.servlet.ServletHandler - servletFilterMap={}
23:45:07.083 [main] DEBUG o.e.jetty.servlet.ServletHandler - servletPathMap=PathMappings[size=1]
23:45:07.083 [main] DEBUG o.e.jetty.servlet.ServletHandler - servletNameMap={dispatcherServlet=dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=false,async=true,src=JAVAX_API:null,STOPPED}}
23:45:07.083 [main] DEBUG o.e.j.server.handler.AbstractHandler - starting JettyEmbeddedServletHandler@5ea434c8{STARTING}
23:45:07.083 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5459ms JettyEmbeddedServletHandler@5ea434c8{STARTED}
23:45:07.083 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5460ms ConstraintSecurityHandler@67e2d983{STARTED}
23:45:07.084 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting org.eclipse.jetty.server.session.DefaultSessionCache@49d904ec[evict=-1,removeUnloadable=false,saveOnCreate=false,saveOnInactiveEvict=false]
23:45:07.086 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting org.eclipse.jetty.server.session.NullSessionDataStore@48e4374[passivating=false,graceSec=3600]
23:45:07.088 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5464ms org.eclipse.jetty.server.session.NullSessionDataStore@48e4374[passivating=false,graceSec=3600]
23:45:07.088 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5464ms org.eclipse.jetty.server.session.DefaultSessionCache@49d904ec[evict=-1,removeUnloadable=false,saveOnCreate=false,saveOnInactiveEvict=false]
23:45:07.088 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5464ms org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800
23:45:07.088 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting JettyEmbeddedErrorHandler@6ac13091{STOPPED}
23:45:07.088 [main] DEBUG o.e.j.server.handler.AbstractHandler - starting JettyEmbeddedErrorHandler@6ac13091{STARTING}
23:45:07.088 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5464ms JettyEmbeddedErrorHandler@6ac13091{STARTED}
23:45:07.088 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ServerContainer@3cc2931c{STOPPED}
23:45:07.088 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting JsrSessionTracker@49b0b76{STOPPED}
23:45:07.088 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5464ms JsrSessionTracker@49b0b76{STARTED}
23:45:07.089 [main] DEBUG o.e.j.w.jsr356.DecoderFactory - init(org.eclipse.jetty.websocket.jsr356.client.EmptyClientEndpointConfig@3e92efc3)
23:45:07.089 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.BooleanDecoder
23:45:07.089 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.ByteDecoder
23:45:07.089 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.CharacterDecoder
23:45:07.089 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.DoubleDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.FloatDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.IntegerDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.LongDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.ShortDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.StringDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.BooleanDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.ByteDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.CharacterDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.DoubleDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.FloatDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.IntegerDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.LongDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.ShortDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.ByteBufferDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.ByteArrayDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.PongMessageDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.ReaderDecoder
23:45:07.090 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.decoders.InputStreamDecoder
23:45:07.096 [main] DEBUG o.e.j.w.jsr356.EncoderFactory - init(org.eclipse.jetty.websocket.jsr356.client.EmptyClientEndpointConfig@3e92efc3)
23:45:07.097 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.BooleanEncoder
23:45:07.097 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.ByteEncoder
23:45:07.097 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.CharacterEncoder
23:45:07.097 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.DoubleEncoder
23:45:07.097 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.FloatEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.IntegerEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.LongEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.ShortEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.StringEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.BooleanEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.ByteEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.CharacterEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.DoubleEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.FloatEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.IntegerEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.LongEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.ShortEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.ByteBufferEncoder
23:45:07.098 [main] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.jsr356.encoders.ByteArrayEncoder
23:45:07.098 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5474ms ServerContainer@3cc2931c{STARTED}
23:45:07.099 [main] INFO o.e.j.server.handler.ContextHandler - Started o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE}
23:45:07.099 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - postConfigure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE} with org.springframework.boot.web.embedded.jetty.ServletContextInitializerConfiguration@19d37183
23:45:07.099 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - postConfigure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE} with org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory$1@1a0dcaa
23:45:07.099 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - postConfigure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE} with org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory$2@3bd40a57
23:45:07.100 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - postConfigure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE} with org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory$WebListenersConfiguration@fdefd3f
23:45:07.100 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - postConfigure o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE} with org.springframework.boot.autoconfigure.websocket.servlet.JettyWebSocketServletWebServerCustomizer$1@d83da2e
23:45:07.100 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5476ms o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE}
23:45:07.100 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ErrorHandler@5ad851c9{STOPPED}
23:45:07.100 [main] DEBUG o.e.j.server.handler.AbstractHandler - starting ErrorHandler@5ad851c9{STARTING}
23:45:07.100 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5476ms ErrorHandler@5ad851c9{STARTED}
23:45:07.100 [main] INFO org.eclipse.jetty.server.Server - Started @5476ms
23:45:07.100 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @5476ms Server@29f69090{STARTED}[9.4.49.v20220914]
23:45:07.274 [main] WARN o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
Using generated security password: 5ed09417-178c-41ee-9294-2ac433474947
This generated password is for development use only. Your security configuration must be updated before running your application in production.
23:45:07.472 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@72967906, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5b8dfcc1, org.springframework.security.web.context.SecurityContextPersistenceFilter@c8c12ac, org.springframework.security.web.header.HeaderWriterFilter@2b662a77, org.springframework.security.web.authentication.logout.LogoutFilter@59662a0b, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4550bb58, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@49139829, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2f9f7dcf, org.springframework.security.web.session.SessionManagementFilter@5c33f1a9, org.springframework.security.web.access.ExceptionTranslationFilter@7f3b84b8]
23:45:08.048 [main] INFO o.s.b.a.w.s.WelcomePageHandlerMapping - Adding welcome page: class path resource [static/index.html]
23:45:08.317 [main] DEBUG i.n.u.i.l.InternalLoggerFactory - Using SLF4J as the default logging framework
23:45:08.341 [main] DEBUG i.n.util.internal.PlatformDependent0 - -Dio.netty.noUnsafe: false
23:45:08.341 [main] DEBUG i.n.util.internal.PlatformDependent0 - Java version: 8
23:45:08.343 [main] DEBUG i.n.util.internal.PlatformDependent0 - sun.misc.Unsafe.theUnsafe: available
23:45:08.344 [main] DEBUG i.n.util.internal.PlatformDependent0 - sun.misc.Unsafe.copyMemory: available
23:45:08.344 [main] DEBUG i.n.util.internal.PlatformDependent0 - sun.misc.Unsafe.storeFence: available
23:45:08.344 [main] DEBUG i.n.util.internal.PlatformDependent0 - java.nio.Buffer.address: available
23:45:08.346 [main] DEBUG i.n.util.internal.PlatformDependent0 - direct buffer constructor: available
23:45:08.348 [main] DEBUG i.n.util.internal.PlatformDependent0 - java.nio.Bits.unaligned: available, true
23:45:08.348 [main] DEBUG i.n.util.internal.PlatformDependent0 - jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable prior to Java9
23:45:08.348 [main] DEBUG i.n.util.internal.PlatformDependent0 - java.nio.DirectByteBuffer.<init>(long, int): available
23:45:08.348 [main] DEBUG i.n.util.internal.PlatformDependent - sun.misc.Unsafe: available
23:45:08.348 [main] DEBUG i.n.util.internal.PlatformDependent - -Dio.netty.tmpdir: /tmp (java.io.tmpdir)
23:45:08.348 [main] DEBUG i.n.util.internal.PlatformDependent - -Dio.netty.bitMode: 64 (sun.arch.data.model)
23:45:08.354 [main] DEBUG i.n.util.internal.PlatformDependent - -Dio.netty.maxDirectMemory: 127729664 bytes
23:45:08.354 [main] DEBUG i.n.util.internal.PlatformDependent - -Dio.netty.uninitializedArrayAllocationThreshold: -1
23:45:08.354 [main] DEBUG io.netty.util.internal.CleanerJava6 - java.nio.ByteBuffer.cleaner(): available
23:45:08.354 [main] DEBUG i.n.util.internal.PlatformDependent - -Dio.netty.noPreferDirect: false
23:45:08.395 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - Server@29f69090{STARTED}[9.4.49.v20220914] added {ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080},UNMANAGED}
23:45:08.404 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting characterEncodingFilter==org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@12b0404f{inst=false,async=true,src=JAVAX_API:null}
23:45:08.405 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6781ms characterEncodingFilter==org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@12b0404f{inst=false,async=true,src=JAVAX_API:null}
23:45:08.405 [main] DEBUG o.eclipse.jetty.servlet.FilterHolder - Filter.init org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@43301423
23:45:08.406 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting formContentFilter==org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@12e61fe6{inst=false,async=true,src=JAVAX_API:null}
23:45:08.406 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6783ms formContentFilter==org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@12e61fe6{inst=false,async=true,src=JAVAX_API:null}
23:45:08.406 [main] DEBUG o.eclipse.jetty.servlet.FilterHolder - Filter.init org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@6dbb137d
23:45:08.407 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting requestContextFilter==org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7ee955a8{inst=false,async=true,src=JAVAX_API:null}
23:45:08.407 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6783ms requestContextFilter==org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7ee955a8{inst=false,async=true,src=JAVAX_API:null}
23:45:08.407 [main] DEBUG o.eclipse.jetty.servlet.FilterHolder - Filter.init org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7f1302d6
23:45:08.407 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting springSecurityFilterChain==org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean$1@1677d1{inst=false,async=true,src=JAVAX_API:null}
23:45:08.407 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6783ms springSecurityFilterChain==org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean$1@1677d1{inst=false,async=true,src=JAVAX_API:null}
23:45:08.407 [main] DEBUG o.eclipse.jetty.servlet.FilterHolder - Filter.init org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean$1@2f465398
23:45:08.407 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting errorPageSecurityFilter==org.springframework.boot.web.servlet.filter.ErrorPageSecurityFilter@48fa0f47{inst=false,async=true,src=JAVAX_API:null}
23:45:08.407 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6783ms errorPageSecurityFilter==org.springframework.boot.web.servlet.filter.ErrorPageSecurityFilter@48fa0f47{inst=false,async=true,src=JAVAX_API:null}
23:45:08.407 [main] DEBUG o.eclipse.jetty.servlet.FilterHolder - Filter.init org.springframework.boot.web.servlet.filter.ErrorPageSecurityFilter@7d3a22a9
23:45:08.407 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting Jetty_WebSocketUpgradeFilter==org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter@769f71a9{inst=false,async=true,src=EMBEDDED:null}
23:45:08.407 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6783ms Jetty_WebSocketUpgradeFilter==org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter@769f71a9{inst=false,async=true,src=EMBEDDED:null}
23:45:08.407 [main] DEBUG o.eclipse.jetty.servlet.FilterHolder - Filter.init WebSocketUpgradeFilter[configuration=null]
23:45:08.407 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=false,async=true,src=JAVAX_API:null,STOPPED}
23:45:08.408 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6784ms dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=false,async=true,src=JAVAX_API:null,STARTED}
23:45:08.408 [main] DEBUG o.e.jetty.servlet.ServletHolder - multipart cleanup listener added for dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=false,async=true,src=JAVAX_API:null,STARTED}
23:45:08.413 [main] DEBUG o.e.jetty.servlet.ServletHolder - Servlet.init null for dispatcherServlet
23:45:08.418 [main] INFO o.e.j.s.h.ContextHandler.application - Initializing Spring DispatcherServlet 'dispatcherServlet'
23:45:08.418 [main] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
23:45:08.419 [main] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms
23:45:08.420 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}
23:45:08.466 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {sun.nio.ch.ServerSocketChannelImpl[/0.0.0.0:8080],POJO}
23:45:08.466 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@2aa5fe93{STOPPED}
23:45:08.466 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6843ms ScheduledExecutorScheduler@2aa5fe93{STARTED}
23:45:08.466 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting HttpConnectionFactory@f2f2cc1[HTTP/1.1]
23:45:08.467 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6843ms HttpConnectionFactory@f2f2cc1[HTTP/1.1]
23:45:08.467 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting SelectorManager@ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}
23:45:08.489 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}][pc=0,pic=0,pec=0,epc=0]@2022-12-14T23:45:08.477Z added {SelectorProducer@672872e1,POJO}
23:45:08.489 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}][pc=0,pic=0,pec=0,epc=0]@2022-12-14T23:45:08.489Z added {QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}],UNMANAGED}
23:45:08.490 [main] DEBUG o.e.j.u.t.strategy.EatWhatYouKill - EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}][pc=0,pic=0,pec=0,epc=0]@2022-12-14T23:45:08.49Z created
23:45:08.490 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ManagedSelector@37f1104d{STOPPED} id=0 keys=-1 selected=-1 updates=0 added {EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}][pc=0,pic=0,pec=0,epc=0]@2022-12-14T23:45:08.49Z,MANAGED}
23:45:08.490 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - SelectorManager@ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {ManagedSelector@37f1104d{STOPPED} id=0 keys=-1 selected=-1 updates=0,AUTO}
23:45:08.490 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ManagedSelector@37f1104d{STOPPED} id=0 keys=-1 selected=-1 updates=0
23:45:08.490 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}][pc=0,pic=0,pec=0,epc=0]@2022-12-14T23:45:08.49Z
23:45:08.490 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6866ms EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=8,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}][pc=0,pic=0,pec=0,epc=0]@2022-12-14T23:45:08.49Z
23:45:08.503 [main] DEBUG o.e.j.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$583/794075965@1018bde2 startThread=0
23:45:08.503 [main] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=false org.eclipse.jetty.io.ManagedSelector$Start@65b3f4a4 on ManagedSelector@37f1104d{STARTING} id=0 keys=0 selected=0 updates=0
23:45:08.503 [qtp2076287037-12] DEBUG o.e.j.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$583/794075965@1018bde2 in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=7,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:08.504 [qtp2076287037-12] DEBUG o.e.j.u.t.strategy.EatWhatYouKill - EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=7,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}][pc=0,pic=0,pec=0,epc=0]@2022-12-14T23:45:08.504Z tryProduce false
23:45:08.505 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1
23:45:08.505 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$Start@65b3f4a4
23:45:08.505 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:08.505 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 0 keys
23:45:08.506 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6882ms ManagedSelector@37f1104d{STARTED} id=0 keys=0 selected=0 updates=0
23:45:08.506 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6883ms SelectorManager@ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}
23:45:08.507 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} added {acceptor-0@f2ff811,POJO}
23:45:08.507 [qtp2076287037-13] DEBUG o.e.j.util.thread.QueuedThreadPool - run acceptor-0@f2ff811 in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=6,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:08.507 [main] DEBUG o.e.j.util.thread.QueuedThreadPool - queue qtp2076287037-13-acceptor-0@f2ff811-ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080} startThread=0
23:45:08.507 [main] INFO o.e.jetty.server.AbstractConnector - Started ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}
23:45:08.508 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6884ms ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}
23:45:08.508 [main] INFO o.s.b.w.e.jetty.JettyWebServer - Jetty started on port(s) 8080 (http/1.1) with context path '/'
23:45:08.513 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketExtensionFactory@28975c28{STOPPED} added {InflaterPool@1e802ef9{STARTED,size=0,capacity=200},UNMANAGED}
23:45:08.514 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketExtensionFactory@28975c28{STOPPED} added {DeflaterPool@7f010382{STARTED,size=0,capacity=200},UNMANAGED}
23:45:08.514 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketServerFactory@ba54932[defaultPolicy=WebSocketPolicy@3943a2be[behavior=SERVER,maxTextMessageSize=10485760,maxTextMessageBufferSize=32768,maxBinaryMessageSize=10485760,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=600000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory] added {MappedByteBufferPool@343570b7{maxQueueLength=-1, factor=1024},POJO}
23:45:08.514 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketServerFactory@ba54932[defaultPolicy=WebSocketPolicy@3943a2be[behavior=SERVER,maxTextMessageSize=10485760,maxTextMessageBufferSize=32768,maxBinaryMessageSize=10485760,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=600000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory] added {ScheduledExecutorScheduler@157853da{STOPPED},AUTO}
23:45:08.514 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketServerFactory@ba54932[defaultPolicy=WebSocketPolicy@3943a2be[behavior=SERVER,maxTextMessageSize=10485760,maxTextMessageBufferSize=32768,maxBinaryMessageSize=10485760,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=600000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory] added {SessionTracker@71c3b41{STOPPED},AUTO}
23:45:08.514 [main] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketServerFactory@ba54932[defaultPolicy=WebSocketPolicy@3943a2be[behavior=SERVER,maxTextMessageSize=10485760,maxTextMessageBufferSize=32768,maxBinaryMessageSize=10485760,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=600000,inputBufferSize=4096],creator=org.eclipse.jetty.websocket.server.WebSocketServerFactory] added {WebSocketExtensionFactory@28975c28{STOPPED},AUTO}
23:45:08.515 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting WebSocketServerFactory@ba54932[defaultPolicy=WebSocketPolicy@3943a2be[behavior=SERVER,maxTextMessageSize=10485760,maxTextMessageBufferSize=32768,maxBinaryMessageSize=10485760,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=600000,inputBufferSize=4096],creator=org.springframework.web.socket.server.jetty.JettyRequestUpgradeStrategy$$Lambda$587/1595282218]
23:45:08.516 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ScheduledExecutorScheduler@157853da{STOPPED}
23:45:08.516 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6892ms ScheduledExecutorScheduler@157853da{STARTED}
23:45:08.516 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting SessionTracker@71c3b41{STOPPED}
23:45:08.516 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6892ms SessionTracker@71c3b41{STARTED}
23:45:08.516 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - starting WebSocketExtensionFactory@28975c28{STOPPED}
23:45:08.516 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6892ms WebSocketExtensionFactory@28975c28{STARTED}
23:45:08.516 [main] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @6892ms WebSocketServerFactory@ba54932[defaultPolicy=WebSocketPolicy@3943a2be[behavior=SERVER,maxTextMessageSize=10485760,maxTextMessageBufferSize=32768,maxBinaryMessageSize=10485760,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=600000,inputBufferSize=4096],creator=org.springframework.web.socket.server.jetty.JettyRequestUpgradeStrategy$$Lambda$587/1595282218]
23:45:08.534 [main] INFO com.example.Application - Started Application in 5.278 seconds (JVM running for 6.911)
23:45:22.580 [qtp2076287037-13-acceptor-0@f2ff811-ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=false Accept@6c54373[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60035]] on ManagedSelector@37f1104d{STARTED} id=0 keys=0 selected=0 updates=0
23:45:22.580 [qtp2076287037-13-acceptor-0@f2ff811-ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@37f1104d{STARTED} id=0 keys=0 selected=0 updates=1
23:45:22.582 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken with none selected
23:45:22.582 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 0/0/0 selected
23:45:22.582 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 0 keys, 1 updates
23:45:22.582 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1
23:45:22.582 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update Accept@6c54373[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60035]]
23:45:22.582 [qtp2076287037-12] DEBUG o.e.j.util.thread.QueuedThreadPool - queue Accept@6c54373[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60035]] startThread=0
23:45:22.582 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:22.582 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 1 keys
23:45:22.582 [qtp2076287037-14] DEBUG o.e.j.util.thread.QueuedThreadPool - run Accept@6c54373[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60035]] in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=5,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:22.589 [qtp2076287037-13-acceptor-0@f2ff811-ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=false Accept@32bedaf2[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60036]] on ManagedSelector@37f1104d{STARTED} id=0 keys=1 selected=0 updates=0
23:45:22.589 [qtp2076287037-13-acceptor-0@f2ff811-ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@37f1104d{STARTED} id=0 keys=1 selected=0 updates=1
23:45:22.589 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken with none selected
23:45:22.589 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 0/0/1 selected
23:45:22.589 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 0 keys, 1 updates
23:45:22.589 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1
23:45:22.589 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update Accept@32bedaf2[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60036]]
23:45:22.589 [qtp2076287037-12] DEBUG o.e.j.util.thread.QueuedThreadPool - queue Accept@32bedaf2[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60036]] startThread=0
23:45:22.590 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:22.590 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 2 keys
23:45:22.590 [qtp2076287037-15] DEBUG o.e.j.util.thread.QueuedThreadPool - run Accept@32bedaf2[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60036]] in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:22.599 [qtp2076287037-15] DEBUG org.eclipse.jetty.io.IdleTimeout - SocketChannelEndPoint@523b400f{l=/172.23.0.2:8080,r=/192.168.1.112:60036,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=0}-><null> idle timeout check, elapsed: 9 ms, remaining: 29991 ms
23:45:22.602 [qtp2076287037-14] DEBUG org.eclipse.jetty.io.IdleTimeout - SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=17/30000}{io=0/0,kio=0,kro=0}-><null> idle timeout check, elapsed: 17 ms, remaining: 29983 ms
23:45:22.627 [qtp2076287037-14] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=42/30000}{io=0/0,kio=0,kro=0}-><null>,null,HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0}
23:45:22.635 [qtp2076287037-15] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@179da66f{s=HttpChannelState@18a489cf{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> SocketChannelEndPoint@523b400f{l=/172.23.0.2:8080,r=/192.168.1.112:60036,OPEN,fill=-,flush=-,to=44/30000}{io=0/0,kio=0,kro=0}-><null>,null,HttpChannelState@18a489cf{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0}
23:45:22.638 [qtp2076287037-15] DEBUG o.e.jetty.server.HttpConnection - New HTTP Connection HttpConnection@17a7368::SocketChannelEndPoint@523b400f{l=/172.23.0.2:8080,r=/192.168.1.112:60036,OPEN,fill=-,flush=-,to=48/30000}{io=0/0,kio=0,kro=0}-><null>
23:45:22.638 [qtp2076287037-15] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$599/2037167420@7c021f86 on ManagedSelector@37f1104d{STARTED} id=0 keys=2 selected=0 updates=0
23:45:22.639 [qtp2076287037-15] DEBUG o.eclipse.jetty.io.AbstractEndPoint - onOpen SocketChannelEndPoint@523b400f{l=/172.23.0.2:8080,r=/192.168.1.112:60036,OPEN,fill=-,flush=-,to=48/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17a7368[p=HttpParser{s=START,0 of -1},g=HttpGenerator@20893426{s=START}]=>HttpChannelOverHttp@179da66f{s=HttpChannelState@18a489cf{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.640 [qtp2076287037-15] DEBUG o.e.jetty.io.AbstractConnection - onOpen HttpConnection@17a7368::SocketChannelEndPoint@523b400f{l=/172.23.0.2:8080,r=/192.168.1.112:60036,OPEN,fill=-,flush=-,to=49/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17a7368[p=HttpParser{s=START,0 of -1},g=HttpGenerator@20893426{s=START}]=>HttpChannelOverHttp@179da66f{s=HttpChannelState@18a489cf{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.640 [qtp2076287037-15] DEBUG o.e.jetty.io.AbstractConnection - fillInterested HttpConnection@17a7368::SocketChannelEndPoint@523b400f{l=/172.23.0.2:8080,r=/192.168.1.112:60036,OPEN,fill=-,flush=-,to=50/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17a7368[p=HttpParser{s=START,0 of -1},g=HttpGenerator@20893426{s=START}]=>HttpChannelOverHttp@179da66f{s=HttpChannelState@18a489cf{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.640 [qtp2076287037-15] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@7096edb9{AC.ReadCB@17a7368{HttpConnection@17a7368::SocketChannelEndPoint@523b400f{l=/172.23.0.2:8080,r=/192.168.1.112:60036,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@17a7368[p=HttpParser{s=START,0 of -1},g=HttpGenerator@20893426{s=START}]=>HttpChannelOverHttp@179da66f{s=HttpChannelState@18a489cf{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}}
23:45:22.640 [qtp2076287037-15] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@523b400f{l=/172.23.0.2:8080,r=/192.168.1.112:60036,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@17a7368[p=HttpParser{s=START,0 of -1},g=HttpGenerator@20893426{s=START}]=>HttpChannelOverHttp@179da66f{s=HttpChannelState@18a489cf{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.640 [qtp2076287037-15] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@6ccf73c2 on ManagedSelector@37f1104d{STARTED} id=0 keys=2 selected=0 updates=1
23:45:22.641 [qtp2076287037-15] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@37f1104d{STARTED} id=0 keys=2 selected=0 updates=2
23:45:22.642 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken with none selected
23:45:22.642 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 0/0/2 selected
23:45:22.642 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 0 keys, 2 updates
23:45:22.642 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 2
23:45:22.642 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$$Lambda$599/2037167420@7c021f86
23:45:22.642 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@6ccf73c2
23:45:22.645 [qtp2076287037-14] DEBUG o.e.jetty.server.HttpConnection - New HTTP Connection HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=60/30000}{io=0/0,kio=0,kro=0}-><null>
23:45:22.645 [qtp2076287037-14] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$599/2037167420@730c87e2 on ManagedSelector@37f1104d{STARTED} id=0 keys=2 selected=0 updates=0
23:45:22.645 [qtp2076287037-14] DEBUG o.eclipse.jetty.io.AbstractEndPoint - onOpen SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=60/30000}{io=0/0,kio=0,kro=0}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.645 [qtp2076287037-14] DEBUG o.e.jetty.io.AbstractConnection - onOpen HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=60/30000}{io=0/0,kio=0,kro=0}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.645 [qtp2076287037-14] DEBUG o.e.jetty.io.AbstractConnection - fillInterested HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=60/30000}{io=0/0,kio=0,kro=0}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.645 [qtp2076287037-14] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@22ab5996{AC.ReadCB@3d9ce20f{HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}}
23:45:22.646 [qtp2076287037-14] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.646 [qtp2076287037-14] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@78fd4b56 on ManagedSelector@37f1104d{STARTED} id=0 keys=2 selected=0 updates=1
23:45:22.646 [qtp2076287037-14] DEBUG org.eclipse.jetty.io.ManagedSelector - Created SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.646 [qtp2076287037-14] DEBUG o.e.j.util.thread.QueuedThreadPool - ran Accept@6c54373[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60035]] in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}]
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@523b400f{l=/172.23.0.2:8080,r=/192.168.1.112:60036,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@17a7368[p=HttpParser{s=START,0 of -1},g=HttpGenerator@20893426{s=START}]=>HttpChannelOverHttp@179da66f{s=HttpChannelState@18a489cf{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 2
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - wakeup on updates SelectorProducer@672872e1
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 2 keys
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken with none selected
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 0/0/2 selected
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 0 keys, 2 updates
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 2
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$$Lambda$599/2037167420@730c87e2
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@78fd4b56
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 2 keys
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 1/1/2 selected
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 1 keys, 0 updates
23:45:22.646 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 sun.nio.ch.SelectionKeyImpl@7d364b43 SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.647 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.647 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING
23:45:22.647 [qtp2076287037-12] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0} tryExecute EatWhatYouKill@fa36558/SelectorProducer@672872e1/PRODUCING/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=5,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=0}][pc=0,pic=0,pec=0,epc=0]@2022-12-14T23:45:22.647Z
23:45:22.647 [qtp2076287037-12] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1} startReservedThread p=1
23:45:22.652 [qtp2076287037-16] DEBUG o.e.j.util.thread.QueuedThreadPool - run ReservedThread@3efdba0c{PENDING,thread=null} in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}]
23:45:22.652 [qtp2076287037-16] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@3efdba0c{PENDING,thread=Thread[qtp2076287037-16,5,main]} was=PENDING next=RESERVED size=0+1 capacity=1
23:45:22.652 [qtp2076287037-16] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@3efdba0c{RESERVED,thread=Thread[qtp2076287037-16,5,main]} waiting ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}
23:45:22.653 [qtp2076287037-12] DEBUG o.e.j.util.thread.QueuedThreadPool - queue ReservedThread@3efdba0c{RESERVED,thread=Thread[qtp2076287037-16,5,main]} startThread=0
23:45:22.653 [qtp2076287037-12] DEBUG o.e.j.u.t.strategy.EatWhatYouKill - EatWhatYouKill@fa36558/SelectorProducer@672872e1/PRODUCING/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}][pc=0,pic=0,pec=0,epc=0]@2022-12-14T23:45:22.653Z m=PRODUCE_EXECUTE_CONSUME t=CEP:SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=7/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING
23:45:22.653 [qtp2076287037-17] DEBUG o.e.j.util.thread.QueuedThreadPool - run CEP:SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=7/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=3,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}]
23:45:22.653 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@22ab5996{AC.ReadCB@3d9ce20f{HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=7/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}}
23:45:22.653 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=7/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null
23:45:22.654 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 513 HeapByteBuffer@751c8782[p=0,l=513,c=8192,r=513]={<<<GET / HTTP/1.1\r\nHost: dev...25877817.1670981401\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.654 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 513 HeapByteBuffer@751c8782[p=0,l=513,c=8192,r=513]={<<<GET / HTTP/1.1\r\nHost: dev...25877817.1670981401\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.655 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@751c8782[p=0,l=513,c=8192,r=513]={<<<GET / HTTP/1.1\r\nHost: dev...25877817.1670981401\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {}
23:45:22.655 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@751c8782[p=0,l=513,c=8192,r=513]={<<<GET / HTTP/1.1\r\nHost: dev...25877817.1670981401\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.655 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1
23:45:22.656 [qtp2076287037-12] DEBUG o.e.j.util.thread.QueuedThreadPool - queue CEP:SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=SPACE1,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING startThread=0
23:45:22.656 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0
23:45:22.656 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:22.657 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=SPACE1,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.657 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 2 keys
23:45:22.657 [qtp2076287037-15] DEBUG org.eclipse.jetty.io.ManagedSelector - Created SocketChannelEndPoint@523b400f{l=/172.23.0.2:8080,r=/192.168.1.112:60036,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=0}->HttpConnection@17a7368[p=HttpParser{s=START,0 of -1},g=HttpGenerator@20893426{s=START}]=>HttpChannelOverHttp@179da66f{s=HttpChannelState@18a489cf{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.657 [qtp2076287037-15] DEBUG o.e.j.util.thread.QueuedThreadPool - ran Accept@32bedaf2[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60036]] in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=3,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}]
23:45:22.657 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI
23:45:22.657 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2
23:45:22.657 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION
23:45:22.657 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER
23:45:22.658 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE
23:45:22.658 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE
23:45:22.658 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER: --> IN_NAME
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Upgrade-Insecure-Requests --> VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Upgrade-Insecure-Requests --> IN_VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Upgrade-Insecure-Requests --> FIELD
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept --> VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept --> IN_VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept --> FIELD
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate --> IN_VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate --> FIELD
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language --> VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language --> IN_VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language --> FIELD
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cookie --> VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cookie --> IN_VALUE
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cookie --> FIELD
23:45:22.659 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT
23:45:22.660 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //dev-ws.infinitelogic.lan/ on HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=0}
GET //dev-ws.infinitelogic.lan/ HTTP/1.1
Host: dev-ws.infinitelogic.lan
Connection: keep-alive
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.9
Cookie: _ga=GA1.2.863788045.1670981401; _gid=GA1.2.1625877817.1670981401
23:45:22.660 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=1} parsed true HttpParser{s=CONTENT,0 of -1}
23:45:22.660 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=1}
23:45:22.666 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - handle //dev-ws.infinitelogic.lan/ HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=7}
23:45:22.666 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpChannelState - handling HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0}
23:45:22.667 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/,age=8}
23:45:22.681 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.Server - REQUEST GET / on HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/,age=8}
23:45:22.681 [qtp2076287037-17] DEBUG o.e.j.server.handler.ContextHandler - scope null||/ @ o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE}
23:45:22.682 [qtp2076287037-17] DEBUG o.e.j.server.handler.ContextHandler - context=||/ @ o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE}
23:45:22.682 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.session - Entering scope org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800, dispatch=REQUEST asyncstarted=false
23:45:22.683 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.session - sessionHandler=org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800 session=null
23:45:22.687 [qtp2076287037-17] DEBUG o.e.jetty.servlet.ServletHandler - servlet |/|null -> dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=true,async=true,src=JAVAX_API:null,STARTED}
23:45:22.699 [qtp2076287037-17] DEBUG o.e.jetty.servlet.ServletHandler - JettyEmbeddedServletHandler@5ea434c8{STARTED} cached filter chain for REQUEST: Chain@b1646e7(characterEncodingFilter==org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@12b0404f{inst=true,async=true,src=JAVAX_API:null})->Chain@534db80b(formContentFilter==org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@12e61fe6{inst=true,async=true,src=JAVAX_API:null})->Chain@5ac98225(requestContextFilter==org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7ee955a8{inst=true,async=true,src=JAVAX_API:null})->Chain@4fe2f29a(springSecurityFilterChain==org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean$1@1677d1{inst=true,async=true,src=JAVAX_API:null})->Chain@767ab4ff(Jetty_WebSocketUpgradeFilter==org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter@769f71a9{inst=true,async=true,src=EMBEDDED:null})->ChainEnd@4849d7db(dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=true,async=true,src=JAVAX_API:null,STARTED})
23:45:22.699 [qtp2076287037-17] DEBUG o.e.jetty.servlet.ServletHandler - chain=Chain@b1646e7(characterEncodingFilter==org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@12b0404f{inst=true,async=true,src=JAVAX_API:null})->Chain@534db80b(formContentFilter==org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@12e61fe6{inst=true,async=true,src=JAVAX_API:null})->Chain@5ac98225(requestContextFilter==org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7ee955a8{inst=true,async=true,src=JAVAX_API:null})->Chain@4fe2f29a(springSecurityFilterChain==org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean$1@1677d1{inst=true,async=true,src=JAVAX_API:null})->Chain@767ab4ff(Jetty_WebSocketUpgradeFilter==org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter@769f71a9{inst=true,async=true,src=EMBEDDED:null})->ChainEnd@4849d7db(dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=true,async=true,src=JAVAX_API:null,STARTED})
23:45:22.822 [qtp2076287037-17] DEBUG o.e.j.server.handler.ContextHandler - scope /||/index.html @ o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE}
23:45:22.822 [qtp2076287037-17] DEBUG o.e.j.server.handler.ContextHandler - context=||/index.html @ o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE}
23:45:22.823 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.session - Entering scope org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800, dispatch=FORWARD asyncstarted=false
23:45:22.828 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.session - sessionHandler=org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800 session=null
23:45:22.828 [qtp2076287037-17] DEBUG o.e.jetty.servlet.ServletHandler - servlet |/index.html|null -> dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=true,async=true,src=JAVAX_API:null,STARTED}
23:45:22.829 [qtp2076287037-17] DEBUG o.e.jetty.servlet.ServletHandler - JettyEmbeddedServletHandler@5ea434c8{STARTED} cached filter chain for FORWARD: Chain@456ec2d(characterEncodingFilter==org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@12b0404f{inst=true,async=true,src=JAVAX_API:null})->Chain@53a3dd72(formContentFilter==org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@12e61fe6{inst=true,async=true,src=JAVAX_API:null})->Chain@1e86a8e8(requestContextFilter==org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7ee955a8{inst=true,async=true,src=JAVAX_API:null})->ChainEnd@35ec305a(dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=true,async=true,src=JAVAX_API:null,STARTED})
23:45:22.829 [qtp2076287037-17] DEBUG o.e.jetty.servlet.ServletHandler - chain=Chain@456ec2d(characterEncodingFilter==org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@12b0404f{inst=true,async=true,src=JAVAX_API:null})->Chain@53a3dd72(formContentFilter==org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@12e61fe6{inst=true,async=true,src=JAVAX_API:null})->Chain@1e86a8e8(requestContextFilter==org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7ee955a8{inst=true,async=true,src=JAVAX_API:null})->ChainEnd@35ec305a(dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=true,async=true,src=JAVAX_API:null,STARTED})
23:45:22.846 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpOutput - write(array HeapByteBuffer@24c5afdd[p=0,l=2779,c=4096,r=2779]={<<<<html>\n<head>\n <title>...cript>\n</body>\n</html>\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00})
23:45:22.846 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpOutput - write(array) s=CLOSING,api=BLOCKED,sc=false,e=null last=true agg=false flush=true async=false, len=2779 null
23:45:22.847 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@1de3bf39[p=0,l=2779,c=4096,r=2779]={<<<<html>\n<head>\n <title>...cript>\n</body>\n</html>\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=true committing=true callback=Blocker@5fd78e3d{null}
23:45:22.847 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /index.html on HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/index.html,age=188}
200 null HTTP/1.1
Date: Wed, 14 Dec 2022 23:45:22 GMT
Content-Language: en-US
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Last-Modified: Wed, 14 Dec 2022 23:44:55 GMT
Content-Type: text/html
Accept-Ranges: bytes
Content-Length: 2779
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Frame-Options: DENY
23:45:22.850 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - generate: NEED_HEADER for SendCallback@5a85557b[PROCESSING][i=HTTP/1.1{s=200,h=15,cl=2779},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@53b7b2b1] (null,[p=0,l=2779,c=4096,r=2779],true)@START
23:45:22.851 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=15,cl=2779} last=true content=HeapByteBuffer@1de3bf39[p=0,l=2779,c=4096,r=2779]={<<<<html>\n<head>\n <title>...cript>\n</body>\n</html>\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.851 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpGenerator - Date: Wed, 14 Dec 2022 23:45:22 GMT
Content-Language: en-US
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Last-Modified: Wed, 14 Dec 2022 23:44:55 GMT
Content-Type: text/html
Accept-Ranges: bytes
Content-Length: 2779
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Frame-Options: DENY
23:45:22.851 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpGenerator - CONTENT_LENGTH
23:45:22.851 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - generate: FLUSH for SendCallback@5a85557b[PROCESSING][i=HTTP/1.1{s=200,h=15,cl=2779},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@53b7b2b1] ([p=0,l=500,c=8192,r=500],[p=0,l=2779,c=4096,r=2779],true)@COMPLETING
23:45:22.851 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@532dd589{IDLE}->null [HeapByteBuffer@751c8782[p=0,l=500,c=8192,r=500]={<<<HTTP/1.1 200 OK\r\nDate: We...y(9.4.49.v20220914)\r\n\r\n>>>670981401...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@1de3bf39[p=0,l=2779,c=4096,r=2779]={<<<<html>\n<head>\n <title>...cript>\n</body>\n</html>\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}]
23:45:22.851 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@532dd589{WRITING}->null:IDLE-->WRITING
23:45:22.852 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 3279 SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=W,to=197/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@45fe9d9e{s=COMPLETING}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/index.html,age=193}
23:45:22.852 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=3279 remaining=0 WriteFlusher@532dd589{WRITING}->null
23:45:22.852 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@532dd589{IDLE}->null:WRITING-->IDLE
23:45:22.855 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - generate: DONE for SendCallback@5a85557b[PROCESSING][i=HTTP/1.1{s=200,h=15,cl=2779},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@53b7b2b1] ([p=500,l=500,c=8192,r=0],[p=2779,l=2779,c=4096,r=0],true)@END
23:45:22.856 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=null w=false
23:45:22.856 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.session - Leaving scope org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800 dispatch=FORWARD, async=false, session=null, oldsession=null, oldsessionhandler=org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800
23:45:22.856 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.session - Leaving scope org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800 dispatch=REQUEST, async=false, session=null, oldsession=null, oldsessionhandler=null
23:45:22.857 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=0},r=1,c=false/true,a=HANDLING,uri=//dev-ws.infinitelogic.lan/,age=198}
23:45:22.857 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpChannelState - unhandle HttpChannelState@786384d{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=0}
23:45:22.860 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@786384d{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=0}
23:45:22.860 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=0},r=1,c=false/true,a=HANDLING,uri=//dev-ws.infinitelogic.lan/,age=201}
23:45:22.861 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$3@63a38362) s=CLOSED,api=BLOCKING,sc=false,e=null s=true e=null, c=null
23:45:22.862 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpChannelState - completed HttpChannelState@786384d{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=0}
23:45:22.862 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpChannelState - unhandle HttpChannelState@786384d{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=0}
23:45:22.862 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@786384d{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=0}
23:45:22.862 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=203}
23:45:22.862 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for / written=2779
23:45:22.863 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@751c8782[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.864 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@751c8782[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.865 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@45fe9d9e{s=END}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=206} filled 0 HeapByteBuffer@751c8782[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.865 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=12/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@45fe9d9e{s=END}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=206} parse HeapByteBuffer@751c8782[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {}
23:45:22.865 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@751c8782[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.865 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> CONTENT_END
23:45:22.865 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - onContentComplete HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=206}
23:45:22.865 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT_END --> END
23:45:22.865 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - onRequestComplete HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=206}
23:45:22.865 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@16b22110[c=0,q=0,[0]=null,s=STREAM] addContent EOF
23:45:22.865 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@45fe9d9e{s=END}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=206} parsed false HttpParser{s=END,0 of -1}
23:45:22.865 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=END,0 of -1},g=HttpGenerator@45fe9d9e{s=END}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=0},r=1,c=true/true,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=206}
23:45:22.865 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpChannelState - recycle HttpChannelState@786384d{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=0}
23:45:22.865 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1}
23:45:22.865 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - END --> START
23:45:22.865 [qtp2076287037-17] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.866 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@751c8782[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.866 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 HeapByteBuffer@751c8782[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.866 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 0 HeapByteBuffer@751c8782[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.866 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@751c8782[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00} {}
23:45:22.866 [qtp2076287037-17] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@751c8782[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 ...\x00\x00\x00\x00\x00\x00\x00}
23:45:22.866 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parsed false HttpParser{s=START,0 of -1}
23:45:22.866 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.866 [qtp2076287037-17] DEBUG o.e.jetty.io.AbstractConnection - fillInterested HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=14/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.866 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@22ab5996{AC.ReadCB@3d9ce20f{HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}}
23:45:22.866 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.866 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@78fd4b56 on ManagedSelector@37f1104d{STARTED} id=0 keys=2 selected=0 updates=0
23:45:22.866 [qtp2076287037-17] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@37f1104d{STARTED} id=0 keys=2 selected=0 updates=1
23:45:22.870 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken with none selected
23:45:22.870 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 0/0/2 selected
23:45:22.870 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 0 keys, 1 updates
23:45:22.870 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1
23:45:22.870 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@78fd4b56
23:45:22.870 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=3/30000}{io=1/1,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}
23:45:22.870 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:22.870 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 2 keys
23:45:22.871 [qtp2076287037-17] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=4/30000}{io=1/1,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable exit HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null
23:45:22.871 [qtp2076287037-17] DEBUG o.e.j.util.thread.QueuedThreadPool - ran CEP:SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=4/30000}{io=1/1,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}]
23:45:23.378 [qtp2076287037-13-acceptor-0@f2ff811-ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=false Accept@370967e4[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60043]] on ManagedSelector@37f1104d{STARTED} id=0 keys=2 selected=0 updates=0
23:45:23.378 [qtp2076287037-13-acceptor-0@f2ff811-ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@37f1104d{STARTED} id=0 keys=2 selected=0 updates=1
23:45:23.378 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken with none selected
23:45:23.378 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 0/0/2 selected
23:45:23.378 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 0 keys, 1 updates
23:45:23.378 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1
23:45:23.378 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update Accept@370967e4[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60043]]
23:45:23.379 [qtp2076287037-12] DEBUG o.e.j.util.thread.QueuedThreadPool - queue Accept@370967e4[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60043]] startThread=0
23:45:23.379 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:23.379 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 3 keys
23:45:23.379 [qtp2076287037-18] DEBUG o.e.j.util.thread.QueuedThreadPool - run Accept@370967e4[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60043]] in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}]
23:45:23.379 [qtp2076287037-18] DEBUG org.eclipse.jetty.io.IdleTimeout - SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-><null> idle timeout check, elapsed: 0 ms, remaining: 30000 ms
23:45:23.379 [qtp2076287037-18] DEBUG org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-><null>,null,HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0}
23:45:23.379 [qtp2076287037-18] DEBUG o.e.jetty.server.HttpConnection - New HTTP Connection HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-><null>
23:45:23.379 [qtp2076287037-18] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$599/2037167420@52c96c9 on ManagedSelector@37f1104d{STARTED} id=0 keys=3 selected=0 updates=0
23:45:23.379 [qtp2076287037-18] DEBUG o.eclipse.jetty.io.AbstractEndPoint - onOpen SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:23.379 [qtp2076287037-18] DEBUG o.e.jetty.io.AbstractConnection - onOpen HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:23.379 [qtp2076287037-18] DEBUG o.e.jetty.io.AbstractConnection - fillInterested HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:23.379 [qtp2076287037-18] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@7df5555e{AC.ReadCB@7993a7c1{HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}}
23:45:23.379 [qtp2076287037-18] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:23.379 [qtp2076287037-18] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@19bc588e on ManagedSelector@37f1104d{STARTED} id=0 keys=3 selected=0 updates=1
23:45:23.379 [qtp2076287037-18] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@37f1104d{STARTED} id=0 keys=3 selected=0 updates=2
23:45:23.380 [qtp2076287037-18] DEBUG org.eclipse.jetty.io.ManagedSelector - Created SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:23.380 [qtp2076287037-18] DEBUG o.e.j.util.thread.QueuedThreadPool - ran Accept@370967e4[java.nio.channels.SocketChannel[connected local=/172.23.0.2:8080 remote=/192.168.1.112:60043]] in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}]
23:45:23.380 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken with none selected
23:45:23.380 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 0/0/3 selected
23:45:23.380 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 0 keys, 2 updates
23:45:23.380 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 2
23:45:23.380 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ManagedSelector$$Lambda$599/2037167420@52c96c9
23:45:23.380 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@19bc588e
23:45:23.380 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:23.380 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:23.380 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 3 keys
23:45:23.381 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 1/1/3 selected
23:45:23.381 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 1 keys, 0 updates
23:45:23.381 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 sun.nio.ch.SelectionKeyImpl@9c62169 SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:23.381 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}
23:45:23.381 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING
23:45:23.381 [qtp2076287037-12] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0} tryExecute EatWhatYouKill@fa36558/SelectorProducer@672872e1/PRODUCING/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=5,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}][pc=0,pic=0,pec=1,epc=0]@2022-12-14T23:45:23.381Z
23:45:23.381 [qtp2076287037-12] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1} startReservedThread p=1
23:45:23.381 [qtp2076287037-12] DEBUG o.e.j.util.thread.QueuedThreadPool - queue ReservedThread@46e51f41{PENDING,thread=null} startThread=0
23:45:23.381 [qtp2076287037-12] DEBUG o.e.j.u.t.strategy.EatWhatYouKill - EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=true/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}][pc=0,pic=0,pec=1,epc=0]@2022-12-14T23:45:23.381Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@7df5555e{AC.ReadCB@7993a7c1{HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}}
23:45:23.382 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 583 HeapByteBuffer@751c8782[p=0,l=583,c=8192,r=583]={<<<GET /ws HTTP/1.1\r\nHost: d...ent_max_window_bits\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:23.382 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} filled 583 HeapByteBuffer@751c8782[p=0,l=583,c=8192,r=583]={<<<GET /ws HTTP/1.1\r\nHost: d...ent_max_window_bits\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:23.382 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@751c8782[p=0,l=583,c=8192,r=583]={<<<GET /ws HTTP/1.1\r\nHost: d...ent_max_window_bits\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {}
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@751c8782[p=0,l=583,c=8192,r=583]={<<<GET /ws HTTP/1.1\r\nHost: d...ent_max_window_bits\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host --> FIELD
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: Upgrade --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: Upgrade --> FIELD
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Pragma: no-cache --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Pragma: no-cache --> FIELD
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cache-Control: no-cache --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cache-Control: no-cache --> FIELD
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent --> FIELD
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Upgrade --> VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Upgrade --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Upgrade --> FIELD
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Origin --> VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Origin --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Origin --> FIELD
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Sec-WebSocket-Version --> VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Sec-WebSocket-Version --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Sec-WebSocket-Version --> FIELD
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate --> FIELD
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language --> VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language --> FIELD
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cookie --> VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cookie --> IN_VALUE
23:45:23.382 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cookie --> FIELD
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Sec-WebSocket-Key --> VALUE
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Sec-WebSocket-Key --> IN_VALUE
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Sec-WebSocket-Key --> FIELD
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Sec-WebSocket-Extensions --> VALUE
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Sec-WebSocket-Extensions --> IN_VALUE
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Sec-WebSocket-Extensions --> FIELD
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT
23:45:23.383 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpChannelOverHttp - upgrade HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} Upgrade: websocket
23:45:23.383 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpChannelOverHttp - No factory for Upgrade: websocket in ServerConnector@3b2cf7ab{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //dev-ws.infinitelogic.lan/ws on HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/ws,age=0}
GET //dev-ws.infinitelogic.lan/ws HTTP/1.1
Host: dev-ws.infinitelogic.lan
Connection: Upgrade
Pragma: no-cache
Cache-Control: no-cache
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Upgrade: websocket
Origin: http://dev-ws.infinitelogic.lan
Sec-WebSocket-Version: 13
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.9
Cookie: _ga=GA1.2.863788045.1670981401; _gid=GA1.2.1625877817.1670981401
Sec-WebSocket-Key: 25vMScuguPfoHNau1txEcg==
Sec-WebSocket-Extensions: permessage-deflate; client_max_window_bits
23:45:23.383 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/ws,age=0} parsed true HttpParser{s=CONTENT,0 of -1}
23:45:23.383 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/ws,age=0}
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpChannel - handle //dev-ws.infinitelogic.lan/ws HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/ws,age=0}
23:45:23.383 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpChannelState - handling HttpChannelState@3c912e37{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0}
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpChannel - action DISPATCH HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=0}
23:45:23.383 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.Server - REQUEST GET /ws on HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=0}
23:45:23.384 [qtp2076287037-12] DEBUG o.e.j.server.handler.ContextHandler - scope null||/ws @ o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE}
23:45:23.384 [qtp2076287037-12] DEBUG o.e.j.server.handler.ContextHandler - context=||/ws @ o.s.b.w.e.j.JettyEmbeddedWebAppContext@1e67a849{application,/,[file:///tmp/jetty-docbase.8080.4755597821306322482/],AVAILABLE}
23:45:23.384 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.session - Entering scope org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800, dispatch=REQUEST asyncstarted=false
23:45:23.384 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.session - sessionHandler=org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800 session=null
23:45:23.384 [qtp2076287037-12] DEBUG o.e.jetty.servlet.ServletHandler - servlet |/ws|null -> dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=true,async=true,src=JAVAX_API:null,STARTED}
23:45:23.384 [qtp2076287037-12] DEBUG o.e.jetty.servlet.ServletHandler - JettyEmbeddedServletHandler@5ea434c8{STARTED} cached filter chain for REQUEST: Chain@581b25ce(characterEncodingFilter==org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@12b0404f{inst=true,async=true,src=JAVAX_API:null})->Chain@b65d91b(formContentFilter==org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@12e61fe6{inst=true,async=true,src=JAVAX_API:null})->Chain@33907c77(requestContextFilter==org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7ee955a8{inst=true,async=true,src=JAVAX_API:null})->Chain@5de17253(springSecurityFilterChain==org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean$1@1677d1{inst=true,async=true,src=JAVAX_API:null})->Chain@5c551974(Jetty_WebSocketUpgradeFilter==org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter@769f71a9{inst=true,async=true,src=EMBEDDED:null})->ChainEnd@79ddaee4(dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=true,async=true,src=JAVAX_API:null,STARTED})
23:45:23.384 [qtp2076287037-12] DEBUG o.e.jetty.servlet.ServletHandler - chain=Chain@581b25ce(characterEncodingFilter==org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter@12b0404f{inst=true,async=true,src=JAVAX_API:null})->Chain@b65d91b(formContentFilter==org.springframework.boot.web.servlet.filter.OrderedFormContentFilter@12e61fe6{inst=true,async=true,src=JAVAX_API:null})->Chain@33907c77(requestContextFilter==org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter@7ee955a8{inst=true,async=true,src=JAVAX_API:null})->Chain@5de17253(springSecurityFilterChain==org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean$1@1677d1{inst=true,async=true,src=JAVAX_API:null})->Chain@5c551974(Jetty_WebSocketUpgradeFilter==org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter@769f71a9{inst=true,async=true,src=EMBEDDED:null})->ChainEnd@79ddaee4(dispatcherServlet==org.springframework.web.servlet.DispatcherServlet@7ef5559e{jsp=null,order=-1,inst=true,async=true,src=JAVAX_API:null,STARTED})
23:45:23.384 [qtp2076287037-16] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@3efdba0c{RESERVED,thread=Thread[qtp2076287037-16,5,main]} task=EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=true/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}][pc=0,pic=0,pec=1,epc=1]@2022-12-14T23:45:23.384Z ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}
23:45:23.384 [qtp2076287037-16] DEBUG o.e.j.u.t.strategy.EatWhatYouKill - EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=true/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}][pc=0,pic=0,pec=1,epc=1]@2022-12-14T23:45:23.384Z tryProduce true
23:45:23.384 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0
23:45:23.384 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:23.385 [qtp2076287037-19] DEBUG o.e.j.util.thread.QueuedThreadPool - run ReservedThread@46e51f41{PENDING,thread=null} in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}]
23:45:23.385 [qtp2076287037-19] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@46e51f41{PENDING,thread=Thread[qtp2076287037-19,5,main]} was=PENDING next=RESERVED size=0+1 capacity=1
23:45:23.385 [qtp2076287037-19] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@46e51f41{RESERVED,thread=Thread[qtp2076287037-19,5,main]} waiting ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}
23:45:23.385 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=2}
23:45:23.385 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 3 keys
23:45:23.424 [qtp2076287037-12] DEBUG o.e.j.w.c.e.JettyAnnotatedScanner - onMethodAnnotation(JettyAnnotatedMetadata[onConnect=null,onBinary=null,onText=null,onFrame=null,onError=null,onClose=null], class org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter, public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketConnect(org.eclipse.jetty.websocket.api.Session), @org.eclipse.jetty.websocket.api.annotations.OnWebSocketConnect())
23:45:23.432 [qtp2076287037-12] DEBUG o.e.j.w.c.e.JettyAnnotatedScanner - onMethodAnnotation(JettyAnnotatedMetadata[onConnect=CallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketConnect(org.eclipse.jetty.websocket.api.Session)],onBinary=null,onText=null,onFrame=null,onError=null,onClose=null], class org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter, public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketText(java.lang.String), @org.eclipse.jetty.websocket.api.annotations.OnWebSocketMessage())
23:45:23.432 [qtp2076287037-12] DEBUG o.e.j.w.c.e.JettyAnnotatedScanner - onMethodAnnotation(JettyAnnotatedMetadata[onConnect=CallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketConnect(org.eclipse.jetty.websocket.api.Session)],onBinary=null,onText=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketText(java.lang.String),wantsSession=false,streaming=false],onFrame=null,onError=null,onClose=null], class org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter, public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketBinary(byte[],int,int), @org.eclipse.jetty.websocket.api.annotations.OnWebSocketMessage())
23:45:23.433 [qtp2076287037-12] DEBUG o.e.j.w.c.e.JettyAnnotatedScanner - onMethodAnnotation(JettyAnnotatedMetadata[onConnect=CallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketConnect(org.eclipse.jetty.websocket.api.Session)],onBinary=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketBinary(byte[],int,int),wantsSession=false,streaming=false],onText=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketText(java.lang.String),wantsSession=false,streaming=false],onFrame=null,onError=null,onClose=null], class org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter, public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketFrame(org.eclipse.jetty.websocket.api.extensions.Frame), @org.eclipse.jetty.websocket.api.annotations.OnWebSocketFrame())
23:45:23.434 [qtp2076287037-12] DEBUG o.e.j.w.c.e.JettyAnnotatedScanner - onMethodAnnotation(JettyAnnotatedMetadata[onConnect=CallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketConnect(org.eclipse.jetty.websocket.api.Session)],onBinary=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketBinary(byte[],int,int),wantsSession=false,streaming=false],onText=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketText(java.lang.String),wantsSession=false,streaming=false],onFrame=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketFrame(org.eclipse.jetty.websocket.api.extensions.Frame),wantsSession=false,streaming=false],onError=null,onClose=null], class org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter, public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketClose(int,java.lang.String), @org.eclipse.jetty.websocket.api.annotations.OnWebSocketClose())
23:45:23.435 [qtp2076287037-12] DEBUG o.e.j.w.c.e.JettyAnnotatedScanner - onMethodAnnotation(JettyAnnotatedMetadata[onConnect=CallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketConnect(org.eclipse.jetty.websocket.api.Session)],onBinary=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketBinary(byte[],int,int),wantsSession=false,streaming=false],onText=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketText(java.lang.String),wantsSession=false,streaming=false],onFrame=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketFrame(org.eclipse.jetty.websocket.api.extensions.Frame),wantsSession=false,streaming=false],onError=null,onClose=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketClose(int,java.lang.String),wantsSession=false,streaming=false]], class org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter, public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketError(java.lang.Throwable), @org.eclipse.jetty.websocket.api.annotations.OnWebSocketError())
23:45:23.436 [qtp2076287037-12] DEBUG o.e.j.w.c.e.JettyAnnotatedEventDriver - ctor / object=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9, policy=WebSocketPolicy@6d0d9b53[behavior=SERVER,maxTextMessageSize=10485760,maxTextMessageBufferSize=32768,maxBinaryMessageSize=10485760,maxBinaryMessageBufferSize=32768,asyncWriteTimeout=60000,idleTimeout=600000,inputBufferSize=4096], batchMode=AUTO, events=JettyAnnotatedMetadata[onConnect=CallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketConnect(org.eclipse.jetty.websocket.api.Session)],onBinary=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketBinary(byte[],int,int),wantsSession=false,streaming=false],onText=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketText(java.lang.String),wantsSession=false,streaming=false],onFrame=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketFrame(org.eclipse.jetty.websocket.api.extensions.Frame),wantsSession=false,streaming=false],onError=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketError(java.lang.Throwable),wantsSession=false,streaming=false],onClose=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketClose(int,java.lang.String),wantsSession=false,streaming=false]]
23:45:23.438 [qtp2076287037-12] DEBUG o.e.j.w.c.extensions.ExtensionStack - Extension Configs=[permessage-deflate]
23:45:23.438 [qtp2076287037-12] DEBUG o.e.j.util.DecoratedObjectFactory - Creating Instance: class org.eclipse.jetty.websocket.common.extensions.compress.PerMessageDeflateExtension
23:45:23.438 [qtp2076287037-12] DEBUG o.e.j.w.c.e.c.PerMessageDeflateExtension - config: outgoingContextTakeover=true, incomingContextTakeover=true : PerMessageDeflateExtension[requested="permessage-deflate", negotiated="permessage-deflate"]
23:45:23.438 [qtp2076287037-12] DEBUG o.e.j.u.component.ContainerLifeCycle - ExtensionStack[queueSize=0,extensions=[permessage-deflate],incoming=<null>,outgoing=<null>] added {PerMessageDeflateExtension[requested="permessage-deflate", negotiated="permessage-deflate"],AUTO}
23:45:23.438 [qtp2076287037-12] DEBUG o.e.j.w.c.extensions.ExtensionStack - Adding Extension: permessage-deflate
23:45:23.461 [qtp2076287037-12] DEBUG o.e.j.w.s.WebSocketServerFactory - HttpConnection: HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=79/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=78}
23:45:23.461 [qtp2076287037-12] DEBUG o.e.j.w.s.WebSocketServerFactory - WebSocketConnection: WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=79/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=78}
23:45:23.462 [qtp2076287037-12] DEBUG o.e.j.w.common.WebSocketSession - Discovered default RemoteEndpointFactory: null
23:45:23.465 [qtp2076287037-12] DEBUG o.e.j.w.common.WebSocketSession - Using RemoteEndpointFactory: WebSocketSession[websocket=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],behavior=SERVER,connection=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=82/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=82},remote=null,incoming=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],outgoing=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=82/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=82}]
23:45:23.465 [qtp2076287037-12] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketSession[websocket=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],behavior=SERVER,connection=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=83/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=82},remote=null,incoming=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],outgoing=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=83/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=82}] added {WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=83/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=82},POJO}
23:45:23.466 [qtp2076287037-12] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketSession[websocket=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],behavior=SERVER,connection=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=83/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=82},remote=null,incoming=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],outgoing=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=83/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=83}] added {JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],AUTO}
23:45:23.469 [qtp2076287037-12] DEBUG o.e.j.u.component.AbstractLifeCycle - starting WebSocketSession[websocket=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],behavior=SERVER,connection=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=84/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=83},remote=null,incoming=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],outgoing=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=84/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=86}]
23:45:23.470 [qtp2076287037-12] DEBUG o.e.j.w.common.WebSocketSession - starting - WebSocketSession[websocket=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],behavior=SERVER,connection=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=87/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=87},remote=null,incoming=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],outgoing=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=87/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=87}]
23:45:23.470 [qtp2076287037-12] DEBUG o.e.j.u.component.AbstractLifeCycle - starting JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9]
23:45:23.470 [qtp2076287037-12] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @21846ms JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9]
23:45:23.470 [qtp2076287037-12] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @21846ms WebSocketSession[websocket=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],behavior=SERVER,connection=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=87/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=87},remote=null,incoming=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],outgoing=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=88/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=87}]
23:45:23.470 [qtp2076287037-12] DEBUG o.e.j.u.component.ContainerLifeCycle - WebSocketSession[websocket=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],behavior=SERVER,connection=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=88/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=87},remote=null,incoming=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],outgoing=ExtensionStack[queueSize=0,extensions=[permessage-deflate],incoming=org.eclipse.jetty.websocket.common.WebSocketSession,outgoing=org.eclipse.jetty.websocket.server.WebSocketServerConnection]] added {ExtensionStack[queueSize=0,extensions=[permessage-deflate],incoming=org.eclipse.jetty.websocket.common.WebSocketSession,outgoing=org.eclipse.jetty.websocket.server.WebSocketServerConnection],MANAGED}
23:45:23.471 [qtp2076287037-12] DEBUG o.e.j.u.component.AbstractLifeCycle - starting ExtensionStack[queueSize=0,extensions=[permessage-deflate],incoming=org.eclipse.jetty.websocket.common.WebSocketSession,outgoing=org.eclipse.jetty.websocket.server.WebSocketServerConnection]
23:45:23.471 [qtp2076287037-12] DEBUG o.e.j.u.component.AbstractLifeCycle - starting PerMessageDeflateExtension[requested="permessage-deflate", negotiated="permessage-deflate"]
23:45:23.471 [qtp2076287037-12] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @21847ms PerMessageDeflateExtension[requested="permessage-deflate", negotiated="permessage-deflate"]
23:45:23.471 [qtp2076287037-12] DEBUG o.e.j.u.component.AbstractLifeCycle - STARTED @21847ms ExtensionStack[queueSize=0,extensions=[permessage-deflate],incoming=org.eclipse.jetty.websocket.common.extensions.compress.PerMessageDeflateExtension,outgoing=org.eclipse.jetty.websocket.common.extensions.compress.PerMessageDeflateExtension]
23:45:23.471 [qtp2076287037-12] DEBUG o.e.j.w.s.WebSocketServerFactory - Handshake Response: org.eclipse.jetty.websocket.server.HandshakeRFC6455@3edea2ed
23:45:23.476 [qtp2076287037-12] DEBUG o.e.j.w.s.WebSocketServerFactory - Websocket upgrade ws://dev-ws.infinitelogic.lan/ws 13 null WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=89/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=START}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=88}
23:45:23.477 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.session - Leaving scope org.eclipse.jetty.server.session.SessionHandler1306854175==dftMaxIdleSec=1800 dispatch=REQUEST, async=false, session=null, oldsession=null, oldsessionhandler=null
23:45:23.477 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.Server - handled=true async=false committed=false on HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=94}
23:45:23.477 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpChannelState - unhandle HttpChannelState@3c912e37{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0}
23:45:23.477 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpChannelState - nextAction(false) COMPLETE HttpChannelState@3c912e37{s=HANDLING rs=COMPLETING os=OPEN is=IDLE awp=false se=false i=false al=0}
23:45:23.477 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpChannel - action COMPLETE HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=COMPLETING os=OPEN is=IDLE awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=94}
23:45:23.477 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpOutput - complete(org.eclipse.jetty.util.Callback$3@986bc76) s=CLOSING,api=BLOCKED,sc=false,e=null s=false e=null, c=HeapByteBuffer@8981fc2[p=0,l=0,c=0,r=0]={<<<>>>}
23:45:23.477 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@8981fc2[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=true callback=org.eclipse.jetty.server.HttpOutput$WriteCompleteCB@7225e610
23:45:23.477 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpChannel - COMMIT for /ws on HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=COMPLETING os=COMMITTED is=IDLE awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=94}
101 null HTTP/1.1
Date: Wed, 14 Dec 2022 23:45:23 GMT
Sec-WebSocket-Extensions: permessage-deflate
Connection: Upgrade
Sec-WebSocket-Accept: HRABOJtQj2P7C3P8CkLKVkNMGG8=
Server: Jetty(9.4.49.v20220914)
Upgrade: WebSocket
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Frame-Options: DENY
23:45:23.478 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpConnection - generate: NEED_HEADER for SendCallback@3927fb73[PROCESSING][i=HTTP/1.1{s=101,h=12,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$Send100Callback@7109959a] (null,[p=0,l=0,c=0,r=0],true)@START
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=101,h=12,cl=-1} last=true content=HeapByteBuffer@8981fc2[p=0,l=0,c=0,r=0]={<<<>>>}
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpGenerator - Date: Wed, 14 Dec 2022 23:45:23 GMT
Sec-WebSocket-Extensions: permessage-deflate
Connection: Upgrade
Sec-WebSocket-Accept: HRABOJtQj2P7C3P8CkLKVkNMGG8=
Server: Jetty(9.4.49.v20220914)
Upgrade: WebSocket
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Frame-Options: DENY
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpGenerator - NO_CONTENT
23:45:23.478 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpConnection - generate: FLUSH for SendCallback@3927fb73[PROCESSING][i=HTTP/1.1{s=101,h=12,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$Send100Callback@7109959a] ([p=0,l=427,c=8192,r=427],[p=0,l=0,c=0,r=0],true)@COMPLETING
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4d50f2c1{IDLE}->null [HeapByteBuffer@751c8782[p=0,l=427,c=8192,r=427]={<<<HTTP/1.1 101 Switching Pr...Frame-Options: DENY\r\n\r\n>>>401; _gid...\x00\x00\x00\x00\x00\x00\x00}]
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4d50f2c1{WRITING}->null:IDLE-->WRITING
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 427 SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=W,to=96/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=COMPLETING}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=HANDLING rs=COMPLETING os=COMMITTED is=IDLE awp=false se=false i=false al=0},r=1,c=false/false,a=HANDLING,uri=//dev-ws.infinitelogic.lan/ws,age=95}
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=427 remaining=0 WriteFlusher@4d50f2c1{WRITING}->null
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4d50f2c1{IDLE}->null:WRITING-->IDLE
23:45:23.478 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpConnection - generate: DONE for SendCallback@3927fb73[PROCESSING][i=HTTP/1.1{s=101,h=12,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$Send100Callback@7109959a] ([p=427,l=427,c=8192,r=0],[p=0,l=0,c=0,r=0],true)@END
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpOutput - onWriteComplete(true,null) s=CLOSING,api=BLOCKED,sc=false,e=null->s=CLOSED,api=BLOCKING,sc=false,e=null c=null cb=org.eclipse.jetty.util.Callback$3@986bc76 w=false
23:45:23.478 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpChannelState - completed HttpChannelState@3c912e37{s=HANDLING rs=COMPLETING os=OPEN is=IDLE awp=false se=false i=false al=0}
23:45:23.478 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpChannelState - unhandle HttpChannelState@3c912e37{s=HANDLING rs=COMPLETED os=OPEN is=IDLE awp=false se=false i=false al=0}
23:45:23.478 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpChannelState - nextAction(false) TERMINATED HttpChannelState@3c912e37{s=IDLE rs=COMPLETED os=OPEN is=IDLE awp=false se=false i=false al=0}
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpChannel - action TERMINATED HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=COMPLETED os=OPEN is=IDLE awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/ws,age=95}
23:45:23.478 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpChannel - onCompleted for /ws written=0
23:45:23.478 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpConnection - Upgrade from HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=END}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=COMPLETED os=OPEN is=IDLE awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/ws,age=95} to WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=END}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=IDLE rs=COMPLETED os=OPEN is=IDLE awp=false se=false i=false al=0},r=1,c=true/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/ws,age=95}
23:45:23.478 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpChannelState - upgrade HttpChannelState@3c912e37{s=IDLE rs=COMPLETED os=OPEN is=IDLE awp=false se=false i=false al=0}
23:45:23.479 [qtp2076287037-12] DEBUG o.eclipse.jetty.io.AbstractEndPoint - SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=END}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=UPGRADED rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=UPGRADED,uri=//dev-ws.infinitelogic.lan/ws,age=95} upgrading from HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=END}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=UPGRADED rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=UPGRADED,uri=//dev-ws.infinitelogic.lan/ws,age=95} to WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=END}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=UPGRADED rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=UPGRADED,uri=//dev-ws.infinitelogic.lan/ws,age=96}
23:45:23.479 [qtp2076287037-12] DEBUG o.e.jetty.io.AbstractConnection - onClose HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/600000}{io=0/0,kio=0,kro=1}->HttpConnection@7993a7c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@48a03aeb{s=END}]=>HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=UPGRADED rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=UPGRADED,uri=//dev-ws.infinitelogic.lan/ws,age=96}
23:45:23.479 [qtp2076287037-12] DEBUG o.e.jetty.io.AbstractConnection - onOpen WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/600000}{io=0/0,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[HANDSHAKING],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]
23:45:23.479 [qtp2076287037-12] DEBUG o.e.j.w.common.WebSocketSession - [SERVER] WebSocketSession.onSessionOpened()
23:45:23.479 [qtp2076287037-12] DEBUG o.e.j.w.common.WebSocketSession - [SERVER] WebSocketSession.open()
23:45:23.485 [qtp2076287037-12] DEBUG o.e.j.w.common.WebSocketSession - [SERVER] WebSocketSession.open() remote=WebSocketRemoteEndpoint@61f6de49[batching=true]
23:45:23.485 [qtp2076287037-12] DEBUG o.e.j.w.c.e.JettyAnnotatedEventDriver - openSession(WebSocketSession[websocket=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],behavior=SERVER,connection=WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=6/600000}{io=0/0,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENING],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]],remote=WebSocketRemoteEndpoint@61f6de49[batching=true],incoming=JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9],outgoing=ExtensionStack[queueSize=0,extensions=[permessage-deflate],incoming=org.eclipse.jetty.websocket.common.extensions.compress.PerMessageDeflateExtension,outgoing=org.eclipse.jetty.websocket.common.extensions.compress.PerMessageDeflateExtension]]) objectFactory=org.eclipse.jetty.util.DecoratedObjectFactory[decorators=1]
23:45:23.485 [qtp2076287037-12] DEBUG o.e.j.w.c.e.JettyAnnotatedEventDriver - onConnect() - events.onConnect=CallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketConnect(org.eclipse.jetty.websocket.api.Session)]
23:45:23.485 [qtp2076287037-12] INFO com.example.WebSocketHandler - Adding websocket server session 63a2a2b3-ebcb-3eed-f994-d7f9de4fb377
23:45:23.486 [qtp2076287037-12] DEBUG o.e.jetty.io.AbstractConnection - fillInterested WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=7/600000}{io=0/0,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]
23:45:23.486 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@7df5555e{AC.ReadCB@6e4358c1{WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/600000}{io=0/0,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]}}
23:45:23.486 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/600000}{io=0/1,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]
23:45:23.486 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@19bc588e on ManagedSelector@37f1104d{STARTED} id=0 keys=3 selected=0 updates=0
23:45:23.487 [qtp2076287037-12] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@37f1104d{STARTED} id=0 keys=3 selected=0 updates=1
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken with none selected
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 0/0/3 selected
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 0 keys, 1 updates
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@19bc588e
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/600000}{io=1/1,kio=1,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 3 keys
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 1/1/3 selected
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 1 keys, 0 updates
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 sun.nio.ch.SelectionKeyImpl@9c62169 SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/600000}{io=1/1,kio=1,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=1/600000}{io=1/0,kio=1,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=1/600000}{io=1/0,kio=1,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]:runFillable:BLOCKING
23:45:23.487 [qtp2076287037-16] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0} tryExecute EatWhatYouKill@fa36558/SelectorProducer@672872e1/PRODUCING/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}][pc=0,pic=0,pec=1,epc=1]@2022-12-14T23:45:23.487Z
23:45:23.487 [qtp2076287037-16] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1} startReservedThread p=1
23:45:23.487 [qtp2076287037-16] DEBUG o.e.j.util.thread.QueuedThreadPool - queue ReservedThread@2293e174{PENDING,thread=null} startThread=0
23:45:23.487 [qtp2076287037-16] DEBUG o.e.j.u.t.strategy.EatWhatYouKill - EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=true/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=3,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}][pc=0,pic=0,pec=1,epc=1]@2022-12-14T23:45:23.487Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=1/600000}{io=1/0,kio=1,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]:runFillable:BLOCKING/BLOCKING
23:45:23.487 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@7df5555e{AC.ReadCB@6e4358c1{WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=1/600000}{io=1/0,kio=1,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]}}
23:45:23.487 [qtp2076287037-16] DEBUG o.e.j.w.c.i.AbstractWebSocketConnection - SERVER onFillable()
23:45:23.488 [qtp2076287037-16] DEBUG o.e.j.w.c.i.AbstractWebSocketConnection - SERVER onFillable(ByteBuffer): java.nio.DirectByteBuffer[pos=0 lim=0 cap=4096]
23:45:23.488 [qtp2076287037-19] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@46e51f41{RESERVED,thread=Thread[qtp2076287037-19,5,main]} task=EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=true/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=3,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}][pc=0,pic=0,pec=1,epc=2]@2022-12-14T23:45:23.488Z ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}
23:45:23.488 [qtp2076287037-19] DEBUG o.e.j.u.t.strategy.EatWhatYouKill - EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=true/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=3,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}][pc=0,pic=0,pec=1,epc=2]@2022-12-14T23:45:23.488Z tryProduce true
23:45:23.488 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0
23:45:23.488 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:23.488 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=2/600000}{io=0/0,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=0,f=null]]
23:45:23.488 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 3 keys
23:45:23.488 [qtp2076287037-14] DEBUG o.e.j.util.thread.QueuedThreadPool - run ReservedThread@2293e174{PENDING,thread=null} in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=3,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}]
23:45:23.488 [qtp2076287037-14] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@2293e174{PENDING,thread=Thread[qtp2076287037-14,5,main]} was=PENDING next=RESERVED size=0+1 capacity=1
23:45:23.488 [qtp2076287037-14] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@2293e174{RESERVED,thread=Thread[qtp2076287037-14,5,main]} waiting ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}
23:45:23.489 [qtp2076287037-16] DEBUG o.e.j.websocket.common.io.ReadState - ReadState@63aeeb4f[READING] getAction(DirectByteBuffer@26ac61fe[p=0,l=0,c=4096,r=0]={<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00})
23:45:23.490 [qtp2076287037-16] DEBUG o.e.j.w.c.i.AbstractWebSocketConnection - ReadState Action: FILL
23:45:23.490 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 16 DirectByteBuffer@26ac61fe[p=0,l=16,c=4096,r=16]={<<<\xC2\x8a!W8$\xD3\x9d\xF7\xEcr'\xF1k$W>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:23.490 [qtp2076287037-16] DEBUG o.e.j.w.c.i.AbstractWebSocketConnection - Filled 16 bytes - DirectByteBuffer@26ac61fe[p=0,l=16,c=4096,r=16]={<<<\xC2\x8a!W8$\xD3\x9d\xF7\xEcr'\xF1k$W>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:23.491 [qtp2076287037-16] DEBUG o.e.j.websocket.common.io.ReadState - ReadState@63aeeb4f[READING] getAction(DirectByteBuffer@26ac61fe[p=0,l=16,c=4096,r=16]={<<<\xC2\x8a!W8$\xD3\x9d\xF7\xEcr'\xF1k$W>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00})
23:45:23.491 [qtp2076287037-16] DEBUG o.e.j.w.c.i.AbstractWebSocketConnection - ReadState Action: PARSE
23:45:23.491 [qtp2076287037-16] DEBUG o.e.jetty.websocket.common.Parser - SERVER Parsing 16 bytes
23:45:23.492 [qtp2076287037-16] DEBUG o.e.jetty.websocket.common.Parser - SERVER OpCode BINARY, fin=true rsv=1..
23:45:23.492 [qtp2076287037-16] DEBUG o.e.jetty.websocket.common.Parser - SERVER Payload Length: 10 - Parser@2bfaf70d[ExtensionStack,s=PAYLOAD_LEN,c=0,len=10,f=BINARY[len=0,fin=true,rsv=1..,masked=true]]
23:45:23.492 [qtp2076287037-16] DEBUG o.e.jetty.websocket.common.Parser - SERVER Window: DirectByteBuffer@6fa29dce[p=0,l=10,c=10,r=10]={<<<\xD3\x9d\xF7\xEcr'\xF1k$W>>>}
23:45:23.492 [qtp2076287037-16] DEBUG o.e.jetty.websocket.common.Parser - SERVER Parsed Frame: BINARY[len=10,fin=true,rsv=1..,masked=true]
23:45:23.492 [qtp2076287037-16] DEBUG o.e.jetty.websocket.common.Parser - SERVER Notify ExtensionStack[queueSize=0,extensions=[permessage-deflate],incoming=org.eclipse.jetty.websocket.common.extensions.compress.PerMessageDeflateExtension,outgoing=org.eclipse.jetty.websocket.common.extensions.compress.PerMessageDeflateExtension]
23:45:23.493 [qtp2076287037-12] DEBUG o.e.j.w.common.WebSocketSession - [SERVER] open -> WebSocketSession@6e02ab55[behavior=SERVER,batchMode=AUTO,idleTimeout=600000,requestURI=ws://dev-ws.infinitelogic.lan/ws] - STARTED
+- WebSocketServerConnection@6e4358c1
| +> SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=2/600000}{io=0/0,kio=0,kro=1}
| +> Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null]
| +> Generator[SERVER,validating,+rsv1]
| +> Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=10,f=BINARY[len=10,fin=true,rsv=1..,masked=true]]
+= JettyAnnotatedEventDriver[org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter@52ec26a9] - STARTED
+= ExtensionStack@7e9780bf[size=1,queueSize=0] - STARTED
+= PerMessageDeflateExtension[requested="permessage-deflate", negotiated="permessage-deflate"] - STARTED
key: +- bean, += managed, +~ unmanaged, +? auto, +: iterable, +] array, +@ map, +> undefined
23:45:23.493 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpChannelState - recycle HttpChannelState@3c912e37{s=UPGRADED rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0}
23:45:23.493 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - reset HttpParser{s=CONTENT,0 of -1}
23:45:23.493 [qtp2076287037-12] DEBUG org.eclipse.jetty.http.HttpParser - CONTENT --> START
23:45:23.496 [qtp2076287037-12] DEBUG org.eclipse.jetty.server.HttpChannel - !handle TERMINATED HttpChannelOverHttp@38aeadfa{s=HttpChannelState@3c912e37{s=UPGRADED rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=UPGRADED,uri=null,age=0}
23:45:23.498 [qtp2076287037-12] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@7993a7c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=6/600000}{io=0/0,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=10,f=BINARY[len=10,fin=true,rsv=1..,masked=true]]] onFillable exit HttpChannelState@3c912e37{s=UPGRADED rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null
23:45:23.498 [qtp2076287037-12] DEBUG o.e.j.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$$Lambda$583/794075965@1018bde2 in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=3,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}]
23:45:23.498 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Supplied 10 input bytes: Inflater[finished=false,read=0,written=0,remaining=10,in=0,out=0]
23:45:23.499 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Decompressed 8 bytes into buffer HeapByteBuffer@5287490f[p=0,l=8,c=8192,r=8]={<<<John Doe>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} from Inflater[finished=false,read=10,written=8,remaining=0,in=10,out=8]
23:45:23.499 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Decompressed 0 bytes into buffer HeapByteBuffer@5287490f[p=0,l=8,c=8192,r=8]={<<<John Doe>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} from Inflater[finished=false,read=10,written=8,remaining=0,in=10,out=8]
23:45:23.499 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Decompress: exiting Inflater[finished=false,read=10,written=8,remaining=0,in=10,out=8]
23:45:23.499 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Supplied 4 input bytes: Inflater[finished=false,read=10,written=8,remaining=4,in=10,out=8]
23:45:23.500 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Decompressed 0 bytes into buffer HeapByteBuffer@5287490f[p=0,l=8,c=8192,r=8]={<<<John Doe>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} from Inflater[finished=false,read=14,written=8,remaining=0,in=14,out=8]
23:45:23.500 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Decompress: exiting Inflater[finished=false,read=14,written=8,remaining=0,in=14,out=8]
23:45:23.502 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.PerMessageDeflateExtension - nextIncomingFrame(BINARY[len=8,fin=true,rsv=...,masked=true])
23:45:23.503 [qtp2076287037-16] DEBUG o.e.j.w.c.e.JettyAnnotatedEventDriver - incomingFrame(BINARY[len=8,fin=true,rsv=...,masked=true])
23:45:23.503 [qtp2076287037-16] DEBUG o.e.j.w.c.e.JettyAnnotatedEventDriver - onFrame(BINARY[len=8,fin=true,rsv=...,masked=true]) - events.onFrame=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketFrame(org.eclipse.jetty.websocket.api.extensions.Frame),wantsSession=false,streaming=false]
23:45:23.503 [qtp2076287037-16] DEBUG o.e.j.w.c.e.JettyAnnotatedEventDriver - onBinaryFrame(HeapByteBuffer@50366d13[p=0,l=8,c=1024,r=8]={<<<John Doe>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}, true) - events.onBinary=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketBinary(byte[],int,int),wantsSession=false,streaming=false], activeMessage=null
23:45:23.504 [qtp2076287037-16] DEBUG o.e.j.w.c.e.JettyAnnotatedEventDriver - onBinaryMessage([8]) - events.onBinary=OptionalSessionCallableMethod[pojo=org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter,method=public void org.springframework.web.socket.adapter.jetty.JettyWebSocketHandlerAdapter.onWebSocketBinary(byte[],int,int),wantsSession=false,streaming=false]
23:45:23.509 [qtp2076287037-16] INFO com.example.WebSocketHandler - Partial binary payload from client with size 8
23:45:23.509 [qtp2076287037-16] INFO com.example.WebSocketHandler - Binary message [74, 111, 104, 110, 32, 68, 111, 101] data John Doe from client with size 8
23:45:23.510 [qtp2076287037-16] INFO com.example.WebSocketHandler - Broadcasting bytes [72, 101, 108, 108, 111, 32, 74, 111, 104, 110, 32, 68, 111, 101] to 1 clients
23:45:23.510 [qtp2076287037-16] INFO com.example.WebSocketHandler - Broadcasting bytes [72, 101, 108, 108, 111, 32, 74, 111, 104, 110, 32, 68, 111, 101] to session: 63a2a2b3-ebcb-3eed-f994-d7f9de4fb377->14 bytes
23:45:23.510 [qtp2076287037-16] DEBUG o.e.j.w.common.WebSocketSession - [SERVER] WebSocketSession.getRemote()
23:45:23.511 [qtp2076287037-16] DEBUG o.e.j.w.c.WebSocketRemoteEndpoint - sendBytes with HeapByteBuffer@4034f562[p=0,l=14,c=14,r=14]={<<<Hello John Doe>>>}
23:45:23.511 [qtp2076287037-16] DEBUG o.e.j.w.c.extensions.ExtensionStack - Queuing BINARY[len=14,fin=true,rsv=...,masked=false]
23:45:23.511 [qtp2076287037-16] DEBUG o.e.j.w.c.extensions.ExtensionStack - Processing BINARY[len=14,fin=true,rsv=...,masked=false]
23:45:23.512 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Queuing BINARY[len=14,fin=true,rsv=...,masked=false]
23:45:23.512 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Processing BINARY[len=14,fin=true,rsv=...,masked=false]
23:45:23.512 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Compressing BINARY[len=14,fin=true,rsv=...,masked=false]: 14 bytes in 256 bytes chunk
23:45:23.512 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Supplied 14 input bytes: Deflater[finished=false,read=0,written=0,in=0,out=0]
23:45:23.512 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Wrote org.eclipse.jetty.io.ByteBufferAccumulator@5ad5c58f bytes to output buffer
23:45:23.512 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Wrote org.eclipse.jetty.io.ByteBufferAccumulator@5ad5c58f bytes to output buffer
23:45:23.512 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - compressed[] bytes = HeapByteBuffer@652235c7[p=0,l=20,c=1024,r=20]={<<<\xF2H\xCd\xC9\xC9W\xF0\xCa\xCf\xC8Sp\xC9O\x05\x00\x00\x00\xFf\xFf>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:23.512 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - payload (TAIL_DROP_FIN_ONLY) = HeapByteBuffer@652235c7[p=0,l=16,c=1024,r=16]={<<<\xF2H\xCd\xC9\xC9W\xF0\xCa\xCf\xC8Sp\xC9O\x05\x00>>>\x00\x00\xFf\xFf\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}
23:45:23.516 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Compressed BINARY[len=0,fin=true,rsv=...,masked=false]: input:256 -> payload:16
23:45:23.517 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.PerMessageDeflateExtension - nextOutgoingFrame(BINARY[len=16,fin=true,rsv=1..,masked=false])
23:45:23.517 [qtp2076287037-16] DEBUG o.e.j.w.c.i.AbstractWebSocketConnection - outgoingFrame(BINARY[len=16,fin=true,rsv=1..,masked=false], org.eclipse.jetty.websocket.common.extensions.compress.CompressExtension$Flusher$1@548b0fd8)
23:45:23.517 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Enqueued FrameEntry[BINARY[len=16,fin=true,rsv=1..,masked=false],org.eclipse.jetty.websocket.common.extensions.compress.CompressExtension$Flusher$1@548b0fd8,AUTO,null] to Flusher@1662051e[IDLE][queueSize=1,aggregateSize=-1,terminated=null]
23:45:23.517 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flushing Flusher@1662051e[PROCESSING][queueSize=1,aggregateSize=-1,terminated=null]
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=-1,terminated=null] processing 1 entries: [FrameEntry[BINARY[len=16,fin=true,rsv=1..,masked=false],org.eclipse.jetty.websocket.common.extensions.compress.CompressExtension$Flusher$1@548b0fd8,AUTO,null]]
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=0,terminated=null] acquired aggregate buffer java.nio.DirectByteBuffer[pos=0 lim=0 cap=32768]
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=0,terminated=null] aggregated 1 frames: [FrameEntry[BINARY[len=0,fin=true,rsv=1..,masked=false],org.eclipse.jetty.websocket.common.extensions.compress.CompressExtension$Flusher$1@548b0fd8,AUTO,null]]
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flushing Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=0,terminated=null]
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=0,terminated=null] processing 0 entries: []
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=0,terminated=null] auto flushing
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=0,terminated=null] flushing aggregate java.nio.DirectByteBuffer[pos=0 lim=18 cap=32768]
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=0,terminated=null] flushing 0 frames: []
23:45:23.518 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@4d50f2c1{IDLE}->null [DirectByteBuffer@33737fce[p=0,l=18,c=32768,r=18]={<<<\xC2\x10\xF2H\xCd\xC9\xC9W\xF0\xCa\xCf\xC8Sp\xC9O\x05\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}]
23:45:23.518 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4d50f2c1{WRITING}->null:IDLE-->WRITING
23:45:23.518 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ChannelEndPoint - flushed 18 SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=W,to=28/600000}{io=0/0,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=18,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=10,f=BINARY[len=0,fin=true,rsv=1..,masked=true]]]
23:45:23.518 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.WriteFlusher - Flushed=true written=18 remaining=0 WriteFlusher@4d50f2c1{WRITING}->null
23:45:23.518 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@4d50f2c1{IDLE}->null:WRITING-->IDLE
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flushing Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=18,terminated=null]
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=18,terminated=null] processing 0 entries: []
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=18,terminated=null] auto flushing
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.common.io.FrameFlusher - Flusher@1662051e[PROCESSING][queueSize=0,aggregateSize=18,terminated=null] flushing 0 frames: []
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.c.e.c.CompressExtension - Processing null
23:45:23.518 [qtp2076287037-16] DEBUG o.e.j.w.c.extensions.ExtensionStack - Entering IDLE
23:45:23.519 [qtp2076287037-16] DEBUG o.e.j.websocket.common.io.ReadState - ReadState@63aeeb4f[READING] getAction(DirectByteBuffer@26ac61fe[p=16,l=16,c=4096,r=0]={\xC2\x8a!W8$\xF2\xCa\xCf\xC8Sp\xC9O\x05\x00<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00})
23:45:23.519 [qtp2076287037-16] DEBUG o.e.j.w.c.i.AbstractWebSocketConnection - ReadState Action: FILL
23:45:23.519 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 0 DirectByteBuffer@26ac61fe[p=0,l=0,c=4096,r=0]={<<<>>>\xC2\x8a!W8$\xF2\xCa\xCf...\x00\x00\x00\x00\x00\x00\x00}
23:45:23.519 [qtp2076287037-16] DEBUG o.e.jetty.io.AbstractConnection - fillInterested WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=-,flush=-,to=0/600000}{io=0/0,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=10,f=null]]
23:45:23.519 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.FillInterest - interested FillInterest@7df5555e{AC.ReadCB@6e4358c1{WebSocketServerConnection@6e4358c1::SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/600000}{io=0/0,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=10,f=null]]}}
23:45:23.519 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/600000}{io=0/1,kio=0,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=10,f=null]]
23:45:23.519 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@19bc588e on ManagedSelector@37f1104d{STARTED} id=0 keys=3 selected=0 updates=0
23:45:23.519 [qtp2076287037-16] DEBUG org.eclipse.jetty.io.ManagedSelector - Wakeup on submit ManagedSelector@37f1104d{STARTED} id=0 keys=3 selected=0 updates=1
23:45:23.519 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken with none selected
23:45:23.519 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 0/0/3 selected
23:45:23.519 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 0 keys, 1 updates
23:45:23.519 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 1
23:45:23.519 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$596/170638723@19bc588e
23:45:23.520 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@36694547{l=/172.23.0.2:8080,r=/192.168.1.112:60043,OPEN,fill=FI,flush=-,to=0/600000}{io=1/1,kio=1,kro=1}->WebSocketServerConnection@6e4358c1[s=ConnectionState@1098881d[OPENED],f=Flusher@1662051e[IDLE][queueSize=0,aggregateSize=-1,terminated=null],g=Generator[SERVER,validating,+rsv1],p=Parser@2bfaf70d[ExtensionStack,s=START,c=0,len=10,f=null]]
23:45:23.520 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:23.520 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 3 keys
23:45:23.520 [qtp2076287037-16] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@3efdba0c{RUNNING,thread=Thread[qtp2076287037-16,5,main]} was=RUNNING next=STOPPED size=0+1 capacity=1
23:45:23.520 [qtp2076287037-16] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@3efdba0c{STOPPED,thread=Thread[qtp2076287037-16,5,main]} exited ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}
23:45:23.520 [qtp2076287037-16] DEBUG o.e.j.util.thread.QueuedThreadPool - ran ReservedThread@3efdba0c{STOPPED,thread=null} in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}]
23:45:27.228 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 woken up from select, 1/1/3 selected
23:45:27.228 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 processing 1 keys, 0 updates
23:45:27.228 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ManagedSelector - selected 1 sun.nio.ch.SelectionKeyImpl@7d364b43 SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=4361/30000}{io=1/1,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}
23:45:27.228 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=4361/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}
23:45:27.228 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ChannelEndPoint - task CEP:SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=4362/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING
23:45:27.228 [qtp2076287037-19] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0} tryExecute EatWhatYouKill@fa36558/SelectorProducer@672872e1/PRODUCING/p=false/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=5,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}][pc=0,pic=0,pec=1,epc=2]@2022-12-14T23:45:27.228Z
23:45:27.228 [qtp2076287037-19] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1} startReservedThread p=1
23:45:27.228 [qtp2076287037-19] DEBUG o.e.j.util.thread.QueuedThreadPool - queue ReservedThread@7cf0e502{PENDING,thread=null} startThread=0
23:45:27.229 [qtp2076287037-19] DEBUG o.e.j.u.t.strategy.EatWhatYouKill - EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=true/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}][pc=0,pic=0,pec=1,epc=2]@2022-12-14T23:45:27.228Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=4362/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING
23:45:27.229 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.FillInterest - fillable FillInterest@22ab5996{AC.ReadCB@3d9ce20f{HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=FI,flush=-,to=4362/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}}
23:45:27.229 [qtp2076287037-19] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=4362/30000}{io=1/0,kio=1,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} onFillable enter HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null
23:45:27.231 [qtp2076287037-14] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@2293e174{RESERVED,thread=Thread[qtp2076287037-14,5,main]} task=EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=true/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}][pc=0,pic=0,pec=1,epc=3]@2022-12-14T23:45:27.23Z ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}
23:45:27.231 [qtp2076287037-14] DEBUG o.e.j.u.t.strategy.EatWhatYouKill - EatWhatYouKill@fa36558/SelectorProducer@672872e1/IDLE/p=true/QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}][pc=0,pic=0,pec=1,epc=3]@2022-12-14T23:45:27.231Z tryProduce true
23:45:27.231 [qtp2076287037-14] DEBUG org.eclipse.jetty.io.ManagedSelector - updateable 0
23:45:27.231 [qtp2076287037-14] DEBUG org.eclipse.jetty.io.ManagedSelector - updates 0
23:45:27.231 [qtp2076287037-14] DEBUG org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=4364/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}
23:45:27.231 [qtp2076287037-14] DEBUG org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.EPollSelectorImpl@77ce2033 waiting with 3 keys
23:45:27.231 [qtp2076287037-15] DEBUG o.e.j.util.thread.QueuedThreadPool - run ReservedThread@7cf0e502{PENDING,thread=null} in QueuedThreadPool[qtp2076287037]@7bc1a03d{STARTED,8<=8<=200,i=4,r=-1,q=0}[ReservedThreadExecutor@b62fe6d{reserved=0/1,pending=1}]
23:45:27.231 [qtp2076287037-15] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@7cf0e502{PENDING,thread=Thread[qtp2076287037-15,5,main]} was=PENDING next=RESERVED size=0+1 capacity=1
23:45:27.231 [qtp2076287037-15] DEBUG o.e.j.u.t.ReservedThreadExecutor - ReservedThread@7cf0e502{RESERVED,thread=Thread[qtp2076287037-15,5,main]} waiting ReservedThreadExecutor@b62fe6d{reserved=1/1,pending=0}
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.io.ChannelEndPoint - filled 539 HeapByteBuffer@751c8782[p=0,l=539,c=8192,r=539]={<<<GET / HTTP/1.1\r\nHost: dev...25877817.1670981401\r\n\r\n>>>rmessage-...\x00\x00\x00\x00\x00\x00\x00}
23:45:27.232 [qtp2076287037-19] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} filled 539 HeapByteBuffer@751c8782[p=0,l=539,c=8192,r=539]={<<<GET / HTTP/1.1\r\nHost: dev...25877817.1670981401\r\n\r\n>>>rmessage-...\x00\x00\x00\x00\x00\x00\x00}
23:45:27.232 [qtp2076287037-19] DEBUG o.e.jetty.server.HttpConnection - HttpConnection@3d9ce20f::SocketChannelEndPoint@d7e533d{l=/172.23.0.2:8080,r=/192.168.1.112:60035,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->HttpConnection@3d9ce20f[p=HttpParser{s=START,0 of -1},g=HttpGenerator@45fe9d9e{s=START}]=>HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} parse HeapByteBuffer@751c8782[p=0,l=539,c=8192,r=539]={<<<GET / HTTP/1.1\r\nHost: dev...25877817.1670981401\r\n\r\n>>>rmessage-...\x00\x00\x00\x00\x00\x00\x00} {}
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@751c8782[p=0,l=539,c=8192,r=539]={<<<GET / HTTP/1.1\r\nHost: dev...25877817.1670981401\r\n\r\n>>>rmessage-...\x00\x00\x00\x00\x00\x00\x00}
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - START --> SPACE1
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - SPACE1 --> URI
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - URI --> SPACE2
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: dev-ws.infinitelogic.lan --> IN_VALUE
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Host: dev-ws.infinitelogic.lan --> FIELD
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cache-Control: max-age=0 --> IN_VALUE
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cache-Control: max-age=0 --> FIELD
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER: --> IN_NAME
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Upgrade-Insecure-Requests --> VALUE
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Upgrade-Insecure-Requests --> IN_VALUE
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Upgrade-Insecure-Requests --> FIELD
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 --> IN_VALUE
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 --> FIELD
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 --> IN_VALUE
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 --> FIELD
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate --> IN_VALUE
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate --> FIELD
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language: en-US,en;q=0.9 --> IN_VALUE
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language: en-US,en;q=0.9 --> FIELD
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cookie: _ga=GA1.2.863788045.1670981401; _gid=GA1.2.1625877817.1670981401 --> IN_VALUE
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER:Cookie: _ga=GA1.2.863788045.1670981401; _gid=GA1.2.1625877817.1670981401 --> FIELD
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT
23:45:27.232 [qtp2076287037-19] DEBUG org.eclipse.jetty.server.HttpChannel - REQUEST for //dev-ws.infinitelogic.lan/ on HttpChannelOverHttp@3b9ace2{s=HttpChannelState@786384d{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=2,c=false/false,a=IDLE,uri=//dev-ws.infinitelogic.lan/,age=0}
GET //dev-ws.infinitelogic.lan/ HTTP/1.1
Host: dev-ws.infinitelogic.lan
Connection: keep-alive
Cache-Control: max-age=0
Upgrade-Insecure-Requests: 1