-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkong.log
2489 lines (2489 loc) · 496 KB
/
kong.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
Attaching to kong_8531-go-plugins-1, kong_8531-kong-1, kong_8531-python-plugins-1, kong_8531-reflector-1, kong_8531-rust-plugins-1
kong_8531-go-plugins-1 | + case $1 in
kong_8531-go-plugins-1 | ++ find -L -maxdepth 2 -name go.mod
kong_8531-go-plugins-1 | + for mod_path in $(find -L -maxdepth 2 -name "go.mod")
kong_8531-go-plugins-1 | ++ dirname ./goplugin/go.mod
kong_8531-go-plugins-1 | + mod_dir=./goplugin
kong_8531-go-plugins-1 | ++ basename ./goplugin
kong_8531-go-plugins-1 | + mod=goplugin
kong_8531-go-plugins-1 | + echo goplugin...
kong_8531-go-plugins-1 | goplugin...
kong_8531-go-plugins-1 | + cd ./goplugin
kong_8531-go-plugins-1 | + go get -v
kong_8531-python-plugins-1 | + case $1 in
kong_8531-python-plugins-1 | ++ find -L -maxdepth 2 -name setup.py
kong_8531-python-plugins-1 | + for mod_path in $(find -L -maxdepth 2 -name "setup.py")
kong_8531-python-plugins-1 | ++ dirname ./pythonplugin/setup.py
kong_8531-python-plugins-1 | + mod_dir=./pythonplugin
kong_8531-python-plugins-1 | ++ basename ./pythonplugin
kong_8531-python-plugins-1 | + mod=pythonplugin
kong_8531-python-plugins-1 | + echo pythonplugin...
kong_8531-python-plugins-1 | pythonplugin...
kong_8531-python-plugins-1 | + cd ./pythonplugin
kong_8531-python-plugins-1 | + shiv . -c pythonplugin -o /python-plugins/pythonplugin
kong_8531-rust-plugins-1 | + case $1 in
kong_8531-rust-plugins-1 | ++ find -L -maxdepth 2 -name Cargo.toml
kong_8531-rust-plugins-1 | + for mod_path in $(find -L -maxdepth 2 -name "Cargo.toml")
kong_8531-rust-plugins-1 | ++ dirname ./rustplugin/Cargo.toml
kong_8531-rust-plugins-1 | + mod_dir=./rustplugin
kong_8531-rust-plugins-1 | ++ basename ./rustplugin
kong_8531-rust-plugins-1 | + mod=rustplugin
kong_8531-rust-plugins-1 | + echo rustplugin...
kong_8531-rust-plugins-1 | rustplugin...
kong_8531-rust-plugins-1 | + export CARGO_TARGET_DIR=/rust-targets/rustplugin
kong_8531-rust-plugins-1 | + CARGO_TARGET_DIR=/rust-targets/rustplugin
kong_8531-rust-plugins-1 | + cd ./rustplugin
kong_8531-rust-plugins-1 | + cargo build --release
kong_8531-reflector-1 | Listening on http://0.0.0.0:8080
kong_8531-rust-plugins-1 | Finished release [optimized] target(s) in 0.08s
kong_8531-rust-plugins-1 | + cp /rust-targets/rustplugin/release/rustplugin /rust-plugins/
kong_8531-rust-plugins-1 exited with code 0
kong_8531-go-plugins-1 | + go build -o /go-plugins/
kong_8531-go-plugins-1 exited with code 0
kong_8531-python-plugins-1 | Processing /src/pythonplugin
kong_8531-python-plugins-1 | Installing build dependencies: started
kong_8531-python-plugins-1 | Installing build dependencies: finished with status 'done'
kong_8531-python-plugins-1 | Getting requirements to build wheel: started
kong_8531-python-plugins-1 | Getting requirements to build wheel: finished with status 'done'
kong_8531-python-plugins-1 | Preparing metadata (pyproject.toml): started
kong_8531-python-plugins-1 | Preparing metadata (pyproject.toml): finished with status 'done'
kong_8531-python-plugins-1 | Collecting kong-pdk
kong_8531-python-plugins-1 | Using cached kong_pdk-0.30-py3-none-any.whl (48 kB)
kong_8531-python-plugins-1 | Collecting msgpack
kong_8531-python-plugins-1 | Using cached msgpack-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322 kB)
kong_8531-python-plugins-1 | Collecting gevent
kong_8531-python-plugins-1 | Using cached gevent-21.12.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (6.2 MB)
kong_8531-python-plugins-1 | Collecting greenlet<2.0,>=1.1.0
kong_8531-python-plugins-1 | Using cached greenlet-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (153 kB)
kong_8531-python-plugins-1 | Collecting zope.interface
kong_8531-python-plugins-1 | Using cached zope.interface-5.4.0-cp39-cp39-manylinux2010_x86_64.whl (255 kB)
kong_8531-python-plugins-1 | Collecting setuptools
kong_8531-python-plugins-1 | Using cached setuptools-62.1.0-py3-none-any.whl (1.1 MB)
kong_8531-python-plugins-1 | Collecting zope.event
kong_8531-python-plugins-1 | Using cached zope.event-4.5.0-py2.py3-none-any.whl (6.8 kB)
kong_8531-python-plugins-1 | Building wheels for collected packages: pythonplugin
kong_8531-python-plugins-1 | Building wheel for pythonplugin (pyproject.toml): started
kong_8531-python-plugins-1 | Building wheel for pythonplugin (pyproject.toml): finished with status 'done'
kong_8531-python-plugins-1 | Created wheel for pythonplugin: filename=pythonplugin-0.1.0-py3-none-any.whl size=2129 sha256=7e8e0331d4f207249a2bc57117b9bada90e8d27ce8ace164e41f3adc26c1c992
kong_8531-python-plugins-1 | Stored in directory: /tmp/pip-ephem-wheel-cache-9nvibo3z/wheels/23/da/73/0ab600f09db66b2a9ba2e78d7e3ab84938da79e0e133653e0e
kong_8531-python-plugins-1 | Successfully built pythonplugin
kong_8531-python-plugins-1 | Installing collected packages: msgpack, setuptools, greenlet, zope.interface, zope.event, gevent, kong-pdk, pythonplugin
kong_8531-python-plugins-1 | Successfully installed gevent-21.12.0 greenlet-1.1.2 kong-pdk-0.30 msgpack-1.0.3 pythonplugin-0.1.0 setuptools-62.1.0 zope.event-4.5.0 zope.interface-5.4.0
kong_8531-python-plugins-1 | WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
kong_8531-python-plugins-1 exited with code 0
kong_8531-kong-1 | 2022/04/26 22:18:13 [warn] 1#0: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /usr/local/kong/nginx.conf:6
kong_8531-kong-1 | nginx: [warn] the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /usr/local/kong/nginx.conf:6
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: using the "epoll" event method
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: openresty/1.19.9.1
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: built by gcc 10.3.1 20210424 (Alpine 10.3.1_git20210424)
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: OS: Linux 5.10.88
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: getrlimit(RLIMIT_NOFILE): 1048576:1048576
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: start worker processes
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: start worker process 1120
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: start worker process 1121
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: start worker process 1122
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: start worker process 1123
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: start worker process 1124
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: start worker process 1125
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: start worker process 1126
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1#0: start worker process 1127
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1124#0: *5 [lua] globalpatches.lua:62: executing a blocking 'sleep' (0.01 seconds), context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1120#0: *1 [lua] init.lua:260: purge(): [DB cache] purging (local) cache, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1121#0: *2 [lua] globalpatches.lua:62: sleep(): executing a blocking 'sleep' (0.001 seconds), context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1120#0: *1 [lua] init.lua:260: purge(): [DB cache] purging (local) cache, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1121#0: *2 [lua] globalpatches.lua:62: sleep(): executing a blocking 'sleep' (0.002 seconds), context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1121#0: *2 [lua] globalpatches.lua:62: sleep(): executing a blocking 'sleep' (0.004 seconds), context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1122#0: *3 [lua] globalpatches.lua:62: sleep(): executing a blocking 'sleep' (0.001 seconds), context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1122#0: *3 [lua] globalpatches.lua:62: sleep(): executing a blocking 'sleep' (0.002 seconds), context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1121#0: *2 [lua] globalpatches.lua:62: sleep(): executing a blocking 'sleep' (0.008 seconds), context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1122#0: *3 [lua] globalpatches.lua:62: sleep(): executing a blocking 'sleep' (0.004 seconds), context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1120#0: *1 [kong] init.lua:426 declarative config loaded from /kong.yml, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1120#0: *1 [kong] handler.lua:57 [acme] acme renew timer started on worker 0, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1125#0: *6 [kong] handler.lua:57 [acme] acme renew timer started on worker 5, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1125#0: *6 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1126#0: *8 [kong] handler.lua:57 [acme] acme renew timer started on worker 6, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1123#0: *4 [kong] handler.lua:57 [acme] acme renew timer started on worker 3, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1122#0: *3 [kong] handler.lua:57 [acme] acme renew timer started on worker 2, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1123#0: *4 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1126#0: *8 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1121#0: *2 [kong] handler.lua:57 [acme] acme renew timer started on worker 1, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1122#0: *3 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1127#0: *7 [kong] handler.lua:57 [acme] acme renew timer started on worker 7, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1121#0: *2 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1127#0: *7 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1124#0: *5 [kong] handler.lua:57 [acme] acme renew timer started on worker 4, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1124#0: *5 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1120#0: *10 [kong] process.lua:255 Starting goplugin, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1120#0: *13 [kong] process.lua:255 Starting rustplugin, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1120#0: *16 [kong] process.lua:255 Starting pythonplugin, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [notice] 1120#0: *19 [kong] process.lua:255 Starting jsplugin, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1120#0: *10 [goplugin:1128] 2022/04/26 22:18:15 Listening on socket: /usr/local/kong/goplugin.socket, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1120#0: *16 [pythonplugin:1130] INFO - [06:18:15] server (gevent) started at path /usr/local/kong/pythonplugin.socket, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1120#0: *19 [jsplugin:1144] 2022-04-26T22:18:15.892Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:15.892Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:15.892Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:15 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:15.892Z [0m[42m[INFO][0m [0m[32mserver started at /usr/local/kong/jsplugin.socket[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *16 [pythonplugin:1130] INFO - [06:18:19] instance #0 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] 2022-04-26T22:18:19.469Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:19.469Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:19.469Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:19.469Z [0m[42m[INFO][0m [0m[32minstance #0 of jsplugin started[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] 2022-04-26T22:18:19.627Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:19.627Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:19.627Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:19.627Z [0m[42m[INFO][0m [0m[32minstance #1 of jsplugin started[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *16 [pythonplugin:1130] INFO - [06:18:19] instance #1 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *16 [pythonplugin:1130] INFO - [06:18:19] instance #2 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] 2022-04-26T22:18:19.912Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:19.912Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:19.912Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:19 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:19.912Z [0m[42m[INFO][0m [0m[32minstance #2 of jsplugin started[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] 2022-04-26T22:18:20.206Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:20.206Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:20.206Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:20.206Z [0m[42m[INFO][0m [0m[32minstance #3 of jsplugin started[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *16 [pythonplugin:1130] INFO - [06:18:20] instance #3 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] 2022-04-26T22:18:20.465Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:20.465Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:20.465Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:20 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:20.465Z [0m[42m[INFO][0m [0m[32minstance #4 of jsplugin started[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] 2022-04-26T22:18:21.013Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:21.013Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:21.013Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:21.013Z [0m[42m[INFO][0m [0m[32minstance #5 of jsplugin started[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *16 [pythonplugin:1130] INFO - [06:18:21] instance #4 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *16 [pythonplugin:1130] INFO - [06:18:21] instance #5 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] 2022-04-26T22:18:21.975Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:21.975Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:21.975Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:21 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:21.975Z [0m[42m[INFO][0m [0m[32minstance #6 of jsplugin started[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:22 [info] 1120#0: *16 [pythonplugin:1130] INFO - [06:18:22] instance #6 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:23 [info] 1120#0: *19 [jsplugin:1144] 2022-04-26T22:18:23.593Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:23 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:23 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:23.593Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:23 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:23 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:23.593Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:23 [info] 1120#0: *19 [jsplugin:1144] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:23 [info] 1120#0: *19 [jsplugin:1144] [1A2022-04-26T22:18:23.593Z [0m[42m[INFO][0m [0m[32minstance #7 of jsplugin started[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:23 [info] 1120#0: *16 [pythonplugin:1130] INFO - [06:18:23] instance #7 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:31 [notice] 1#0: signal 1 (SIGHUP) received from 1182, reconfiguring
kong_8531-kong-1 | 2022/04/26 22:18:31 [notice] 1#0: reconfiguring
kong_8531-kong-1 | 2022/04/26 22:18:31 [warn] 1#0: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /usr/local/kong/nginx.conf:6
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: using the "epoll" event method
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: start worker processes
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: start worker process 1211
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: start worker process 1212
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: start worker process 1213
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: start worker process 1214
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: start worker process 1215
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: start worker process 1216
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: start worker process 1217
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: start worker process 1218
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1218#0: *1303 [lua] init.lua:260: purge(): [DB cache] purging (local) cache, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1218#0: *1303 [lua] init.lua:260: purge(): [DB cache] purging (local) cache, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1218#0: *1303 [kong] init.lua:426 declarative config loaded from /kong.yml, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1213#0: *1301 [lua] globalpatches.lua:62: sleep(): executing a blocking 'sleep' (0.001 seconds), context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1120#0: gracefully shutting down
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1121#0: gracefully shutting down
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 17 (SIGCHLD) received from 1184
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1127#0: gracefully shutting down
kong_8531-kong-1 | 2022/04/26 22:18:33 [crit] 1120#0: *1318 [lua] targets.lua:248: could not reschedule DNS resolver timer: process exiting, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [crit] 1127#0: *1322 [lua] targets.lua:248: could not reschedule DNS resolver timer: process exiting, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [crit] 1121#0: *1325 [lua] targets.lua:248: could not reschedule DNS resolver timer: process exiting, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1124#0: gracefully shutting down
kong_8531-kong-1 | 2022/04/26 22:18:33 [crit] 1124#0: *1329 [lua] targets.lua:248: could not reschedule DNS resolver timer: process exiting, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1122#0: gracefully shutting down
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1123#0: gracefully shutting down
kong_8531-kong-1 | 2022/04/26 22:18:33 [crit] 1122#0: *1331 [lua] targets.lua:248: could not reschedule DNS resolver timer: process exiting, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [crit] 1123#0: *1339 [lua] targets.lua:248: could not reschedule DNS resolver timer: process exiting, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1127#0: exiting
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1122#0: exiting
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1124#0: exiting
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1125#0: gracefully shutting down
kong_8531-kong-1 | 2022/04/26 22:18:33 [crit] 1125#0: *1353 [lua] targets.lua:248: could not reschedule DNS resolver timer: process exiting, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1125#0: exiting
kong_8531-kong-1 | 2022/04/26 22:18:33 [info] 1218#0: *1303 [kong] handler.lua:57 [acme] acme renew timer started on worker 7, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1218#0: *1303 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1126#0: gracefully shutting down
kong_8531-kong-1 | 2022/04/26 22:18:33 [crit] 1126#0: *1370 [lua] targets.lua:248: could not reschedule DNS resolver timer: process exiting, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1121#0: exiting
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1123#0: exiting
kong_8531-kong-1 | 2022/04/26 22:18:33 [info] 1212#0: *1300 [kong] handler.lua:57 [acme] acme renew timer started on worker 1, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [info] 1213#0: *1301 [kong] handler.lua:57 [acme] acme renew timer started on worker 2, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1212#0: *1300 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1213#0: *1301 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1126#0: exiting
kong_8531-kong-1 | 2022/04/26 22:18:33 [info] 1211#0: *1299 [kong] handler.lua:57 [acme] acme renew timer started on worker 0, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [info] 1216#0: *1305 [kong] handler.lua:57 [acme] acme renew timer started on worker 5, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [info] 1215#0: *1302 [kong] handler.lua:57 [acme] acme renew timer started on worker 4, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [info] 1214#0: *1304 [kong] handler.lua:57 [acme] acme renew timer started on worker 3, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1214#0: *1304 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1215#0: *1302 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1216#0: *1305 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1211#0: *1392 [kong] process.lua:255 Starting goplugin, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [info] 1217#0: *1306 [kong] handler.lua:57 [acme] acme renew timer started on worker 6, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1211#0: *1393 [kong] process.lua:255 Starting rustplugin, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1211#0: *1394 [kong] process.lua:255 Starting pythonplugin, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1217#0: *1306 [kong] init.lua:311 only worker #0 can manage, context: init_worker_by_lua*
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1211#0: *1397 [kong] process.lua:255 Starting jsplugin, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [info] 1211#0: *1392 [goplugin:1219] 2022/04/26 22:18:33 Listening on socket: /usr/local/kong/goplugin.socket, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1124#0: exit
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 17 (SIGCHLD) received from 1124
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: worker process 1124 exited with code 0
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 29 (SIGIO) received
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1127#0: exit
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 17 (SIGCHLD) received from 1127
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: worker process 1127 exited with code 0
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 29 (SIGIO) received
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1126#0: exit
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 17 (SIGCHLD) received from 1126
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: worker process 1126 exited with code 0
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 29 (SIGIO) received
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1121#0: exit
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 17 (SIGCHLD) received from 1121
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: worker process 1121 exited with code 0
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 29 (SIGIO) received
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1125#0: exit
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 17 (SIGCHLD) received from 1125
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: worker process 1125 exited with code 0
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 29 (SIGIO) received
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1123#0: exit
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1122#0: exit
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 17 (SIGCHLD) received from 1123
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: worker process 1123 exited with code 0
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 29 (SIGIO) received
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 17 (SIGCHLD) received from 1122
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: worker process 1122 exited with code 0
kong_8531-kong-1 | 2022/04/26 22:18:33 [notice] 1#0: signal 29 (SIGIO) received
kong_8531-kong-1 | 2022/04/26 22:18:33 [error] 1212#0: *1389 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:33 [error] 1212#0: *1390 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:33 [error] 1212#0: *1387 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:33 [error] 1212#0: *1390 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:33 [error] 1212#0: *1388 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:33 [error] 1212#0: *1388 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:33 [error] 1212#0: *1389 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:33 [error] 1212#0: *1390 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:33 [error] 1212#0: *1389 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:33 [error] 1212#0: *1390 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1212#0: *1388 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1212#0: *1388 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1212#0: *1389 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1394 [pythonplugin:1221] INFO - [06:18:34] server (gevent) started at path /usr/local/kong/pythonplugin.socket, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1212#0: *1389 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1212#0: *1389 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1394 [pythonplugin:1221] INFO - [06:18:34] instance #0 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1212#0: *1389 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1212#0: *1387 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1212#0: *1388 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1212#0: *1387 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1212#0: *1387 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1394 [pythonplugin:1221] INFO - [06:18:34] instance #1 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1394 [pythonplugin:1221] INFO - [06:18:34] instance #2 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] 2022-04-26T22:18:34.334Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A2022-04-26T22:18:34.334Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A2022-04-26T22:18:34.334Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A2022-04-26T22:18:34.334Z [0m[42m[INFO][0m [0m[32mserver started at /usr/local/kong/jsplugin.socket[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] 2022-04-26T22:18:34.476Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A2022-04-26T22:18:34.476Z [0m[41m[ERROR][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A2022-04-26T22:18:34.476Z [0m[41m[ERROR][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] [1A2022-04-26T22:18:34.476Z [0m[41m[ERROR][0m [0m[31mrpc: # 256 PluginServerError: no plugin instance #14[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] /usr/local/lib/node_modules/kong-pdk/listener.js:41, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] if (has(err, 'message')) return err.message, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] ^, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] ReferenceError: has is not defined, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] at errToString (/usr/local/lib/node_modules/kong-pdk/listener.js:41:3), context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] at write_error (/usr/local/lib/node_modules/kong-pdk/listener.js:34:5), context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] at /usr/local/lib/node_modules/kong-pdk/listener.js:144:13, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1397 [jsplugin:1222] at processTicksAndRejections (node:internal/process/task_queues:96:5), context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [notice] 1211#0: signal 17 (SIGCHLD) received from 1222
kong_8531-kong-1 | 2022/04/26 22:18:34 [notice] 1211#0: *1397 [kong] process.lua:271 external pluginserver 'jsplugin' terminated: exit 1, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1216#0: *1542 [kong] mp_rpc.lua:308 [jsplugin] no data, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1216#0: *1498 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1216#0: *1498 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1216#0: *1498 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [info] 1211#0: *1394 [pythonplugin:1221] INFO - [06:18:34] instance #3 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1215#0: *1536 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1215#0: *1536 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1215#0: *1536 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1215#0: *1536 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1215#0: *1536 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1216#0: *1498 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1216#0: *1498 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1216#0: *1498 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1216#0: *1494 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1216#0: *1494 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1216#0: *1494 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [notice] 1211#0: *1397 [kong] process.lua:255 Starting jsplugin, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1573 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1573 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1573 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1573 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1573 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1573 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1573 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1573 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1573 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:34 [error] 1218#0: *1558 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] 2022-04-26T22:18:35.177Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A2022-04-26T22:18:35.177Z [0m[42m[INFO][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A2022-04-26T22:18:35.177Z [0m[42m[INFO][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A2022-04-26T22:18:35.177Z [0m[42m[INFO][0m [0m[32mserver started at /usr/local/kong/jsplugin.socket[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] 2022-04-26T22:18:35.235Z [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A2022-04-26T22:18:35.235Z [0m[41m[ERROR][0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A2022-04-26T22:18:35.235Z [0m[41m[ERROR][0m [0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A[K, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] [1A2022-04-26T22:18:35.235Z [0m[41m[ERROR][0m [0m[31mrpc: # 922 PluginServerError: no plugin instance #14[0m, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] /usr/local/lib/node_modules/kong-pdk/listener.js:41, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] if (has(err, 'message')) return err.message, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] ^, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] ReferenceError: has is not defined, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] at errToString (/usr/local/lib/node_modules/kong-pdk/listener.js:41:3), context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] at write_error (/usr/local/lib/node_modules/kong-pdk/listener.js:34:5), context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] at /usr/local/lib/node_modules/kong-pdk/listener.js:144:13, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1397 [jsplugin:1255] at processTicksAndRejections (node:internal/process/task_queues:96:5), context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1606 [kong] mp_rpc.lua:308 [jsplugin] no data, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [notice] 1211#0: signal 17 (SIGCHLD) received from 1255
kong_8531-kong-1 | 2022/04/26 22:18:35 [notice] 1211#0: *1397 [kong] process.lua:271 external pluginserver 'jsplugin' terminated: exit 1, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1606 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1606 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1606 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1604 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1604 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1604 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1607 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1607 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1607 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1606 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1606 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1606 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1604 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1604 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1604 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1637 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1637 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1216#0: *1637 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [notice] 1120#0: exiting
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 recv() failed (104: Connection reset by peer), client: 172.26.0.1, server: kong, request: "GET /python HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [pythonplugin] no data, client: 172.26.0.1, server: kong, request: "GET /python HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 recv() failed (104: Connection reset by peer), client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] pb_rpc.lua:365 [goplugin] connection reset by peer, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 send() failed (32: Broken pipe), client: 172.26.0.1, server: kong, request: "GET /python HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1394 [pythonplugin:1221] WARN - [06:18:35] rpc: #260 error: no plugin instance #11, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] mp_rpc.lua:308 [pythonplugin] no plugin instance #11, client: 172.26.0.1, server: kong, request: "GET /python HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [pythonplugin] broken pipe, client: 172.26.0.1, server: kong, request: "GET /python HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1394 [pythonplugin:1221] INFO - [06:18:35] instance #4 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1394 [pythonplugin:1221] WARN - [06:18:35] rpc: #761 error: no plugin instance #8, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1640 [kong] mp_rpc.lua:308 [pythonplugin] no plugin instance #8, client: 172.26.0.1, server: kong, request: "GET /python HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1394 [pythonplugin:1221] INFO - [06:18:35] instance #5 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1640 recv() failed (104: Connection reset by peer), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 recv() failed (104: Connection reset by peer), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1640 [kong] mp_rpc.lua:308 [jsplugin] no data, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 recv() failed (104: Connection reset by peer), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] no data, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] mp_rpc.lua:308 [jsplugin] no data, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 recv() failed (104: Connection reset by peer), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] no data, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1640 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1394 [pythonplugin:1221] WARN - [06:18:35] rpc: #413 error: no plugin instance #9, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [pythonplugin] no plugin instance #9, client: 172.26.0.1, server: kong, request: "GET /python HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [info] 1211#0: *1394 [pythonplugin:1221] INFO - [06:18:35] instance #6 of pythonplugin started, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1643 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1645 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [notice] 1211#0: *1397 [kong] process.lua:255 Starting jsplugin, context: ngx.timer
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [notice] 1120#0: exit
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [notice] 1#0: signal 17 (SIGCHLD) received from 1128
kong_8531-kong-1 | 2022/04/26 22:18:35 [notice] 1#0: worker process 1120 exited with code 0
kong_8531-kong-1 | 2022/04/26 22:18:35 [alert] 1#0: unknown process 1128 exited on signal 9
kong_8531-kong-1 | 2022/04/26 22:18:35 [alert] 1#0: unknown process 1129 exited on signal 9
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [alert] 1#0: unknown process 1130 exited on signal 9
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [alert] 1#0: unknown process 1144 exited on signal 9
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [notice] 1#0: signal 29 (SIGIO) received
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1217#0: *1648 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1212#0: *1659 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1218#0: *1687 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] pb_rpc.lua:365 [goplugin] closed, client: 172.26.0.1, server: kong, request: "GET /go HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1211#0: *1912 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1211#0: *1912 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1211#0: *1912 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1853 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 connect() to unix:/usr/local/kong/jsplugin.socket failed (111: Connection refused), client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:181 [jsplugin] trying to connect: connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"
kong_8531-kong-1 | 2022/04/26 22:18:35 [error] 1213#0: *1775 [kong] mp_rpc.lua:308 [jsplugin] connection refused, client: 172.26.0.1, server: kong, request: "GET /js HTTP/1.1", host: "localhost"