forked from opennetworkinglab/aether-onramp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathamf-k8s-logs-with-GN-ON.txt
1078 lines (1077 loc) · 88.5 KB
/
amf-k8s-logs-with-GN-ON.txt
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
configuration:
amfDBName: sdcore_amf
amfName: AMF
debugProfilePort: 5001
enableDBStore: false
enableNrfCaching: false
enableSctpLb: false
kafkaInfo:
brokerPort: 9092
brokerUri: kafka-headless
topicName: sdcore-data-source-amf
mongodb:
name: free5gc
url: mongodb://mongodb-arbiter-headless
networkFeatureSupport5GS:
emc: 0
emcN3: 0
emf: 0
enable: true
imsVoPS: 0
iwkN26: 0
mcsi: 0
mpsi: 0
networkName:
full: Aether5G
short: Aether
nfKafka:
enable: true
topic: sdcore-nf-data-source
urls:
- kafka-headless:9092
ngapIpList:
- 0.0.0.0
ngappPort: 38412
non3gppDeregistrationTimerValue: 3240
nrfUri: http://nrf:29510
plmnSupportList:
- plmnId:
mcc: "208"
mnc: "93"
snssaiList:
- sd: "010203"
sst: 1
sbi:
bindingIPv4: 0.0.0.0
port: 29518
registerIPv4: amf
scheme: http
sctpGrpcPort: 9000
security:
cipheringOrder:
- NEA0
integrityOrder:
- NIA1
- NIA2
servedGuamiList:
- amfId: cafe00
plmnId:
mcc: "208"
mnc: "93"
serviceNameList:
- namf-comm
- namf-evts
- namf-mt
- namf-loc
- namf-oam
supportDnnList:
- internet
supportTaiList:
- plmnId:
mcc: "208"
mnc: "93"
tac: 1
t3502Value: 720
t3512Value: 3600
t3513:
enable: true
expireTime: 6s
maxRetryTimes: 4
t3522:
enable: true
expireTime: 6s
maxRetryTimes: 4
t3550:
enable: true
expireTime: 6s
maxRetryTimes: 4
t3560:
enable: true
expireTime: 6s
maxRetryTimes: 4
t3565:
enable: true
expireTime: 6s
maxRetryTimes: 4
info:
description: AMF initial configuration
version: 1.0.0
logger:
AMF:
ReportCaller: false
debugLevel: info
AUSF:
ReportCaller: false
debugLevel: info
Aper:
ReportCaller: false
debugLevel: info
CommonConsumerTest:
ReportCaller: false
debugLevel: info
FSM:
ReportCaller: false
debugLevel: info
MongoDBLibrary:
ReportCaller: false
debugLevel: info
N3IWF:
ReportCaller: false
debugLevel: info
NAS:
ReportCaller: false
debugLevel: info
NGAP:
ReportCaller: false
debugLevel: info
NRF:
ReportCaller: false
debugLevel: info
NamfComm:
ReportCaller: false
debugLevel: info
NamfEventExposure:
ReportCaller: false
debugLevel: info
NsmfPDUSession:
ReportCaller: false
debugLevel: info
NudrDataRepository:
ReportCaller: false
debugLevel: info
OpenApi:
ReportCaller: false
debugLevel: info
PCF:
ReportCaller: false
debugLevel: info
PFCP:
ReportCaller: false
debugLevel: info
PathUtil:
ReportCaller: false
debugLevel: info
SMF:
ReportCaller: false
debugLevel: info
UDM:
ReportCaller: false
debugLevel: info
UDR:
ReportCaller: false
debugLevel: info
WEBUI:
ReportCaller: false
debugLevel: info2023-11-26T23:42:23Z[36m [INFO][AMF][App] [0mamf
2023-11-26T23:42:23Z[36m [INFO][AMF][Init] [0mAMF Log level is set to [info] level
2023-11-26T23:42:23Z[36m [INFO][LIB][NAS] [0mset log level : info
2023-11-26T23:42:23Z[36m [INFO][LIB][NAS] [0mset report call : false
2023-11-26T23:42:23Z[36m [INFO][LIB][NGAP] [0mset log level : info
2023-11-26T23:42:23Z[36m [INFO][LIB][NGAP] [0mset report call : false
2023-11-26T23:42:23Z[36m [INFO][LIB][FSM] [0mset log level : info
2023-11-26T23:42:23Z[36m [INFO][LIB][FSM] [0mset report call : false
2023-11-26T23:42:23Z[36m [INFO][LIB][Aper] [0mset log level : info
2023-11-26T23:42:23Z[36m [INFO][LIB][Aper] [0mset report call : false
2023-11-26T23:42:23Z[36m [INFO][LIB][Path] [0mset log level : info
2023-11-26T23:42:23Z[36m [INFO][LIB][Path] [0mset report call : false
2023-11-26T23:42:23Z[36m [INFO][AMF][CFG] [0mconfig version [1.0.0]
2023-11-26T23:42:23Z[36m [INFO][AMF][Init] [0mReading Amf related configuration from ROC
2023-11-26T23:42:23Z[36m [INFO][Config5g][GRPC] [0mcreate config client
2023-11-26T23:42:23Z[36m [INFO][Config5g][GRPC] [0mDial grpc connection - webui:9876
2023/11/26 23:42:23 INFO: [core] [Channel #1] Channel created
2023/11/26 23:42:23 INFO: [core] [Channel #1] original dial target is: "webui:9876"
2023/11/26 23:42:23 INFO: [core] [Channel #1] parsed dial target is: {Scheme:webui Authority: Endpoint:9876 URL:{Scheme:webui Opaque:9876 User: Host: Path: RawPath: ForceQuery:false RawQuery: Fragment: RawFragment:}}
2023/11/26 23:42:23 INFO: [core] [Channel #1] fallback to scheme "passthrough"
2023/11/26 23:42:23 INFO: [core] [Channel #1] parsed dial target is: {Scheme:passthrough Authority: Endpoint:webui:9876 URL:{Scheme:passthrough Opaque: User: Host: Path:/webui:9876 RawPath: ForceQuery:false RawQuery: Fragment: RawFragment:}}
2023/11/26 23:42:23 INFO: [core] [Channel #1] Channel authority set to "webui:9876"
2023/11/26 23:42:23 INFO: [core] [Channel #1] Resolver state updated: {
"Addresses": [
{
"Addr": "webui:9876",
"ServerName": "",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}
],
"ServiceConfig": null,
"Attributes": null
} (resolver returned new addresses)
2023/11/26 23:42:23 INFO: [core] [Channel #1] Channel switches to new LB policy "pick_first"
2023/11/26 23:42:23 INFO: [core] [Channel #1 SubChannel #2] Subchannel created
2023-11-26T23:42:23Z[36m [INFO][AMF][Init] [0mServer started
[GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.
- using env: export GIN_MODE=release
- using code: gin.SetMode(gin.ReleaseMode)
2023/11/26 23:42:23 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:23 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
[GIN-debug] GET /namf-callback/v1/ --> github.com/omec-project/amf/httpcallback.Index (4 handlers)
[GIN-debug] POST /namf-callback/v1/smContextStatus/:guti/:pduSessionId --> github.com/omec-project/amf/httpcallback.HTTPSmContextStatusNotify (4 handlers)
[GIN-debug] POST /namf-callback/v1/am-policy/:polAssoId/update --> github.com/omec-project/amf/httpcallback.HTTPAmPolicyControlUpdateNotifyUpdate (4 handlers)
2023-11-26T23:42:23Z[36m [INFO][Config5g][GRPC] [0msubscribeToConfigPod
[GIN-debug] POST /namf-callback/v1/am-policy/:polAssoId/terminate --> github.com/omec-project/amf/httpcallback.HTTPAmPolicyControlUpdateNotifyTerminate (4 handlers)
[GIN-debug] POST /namf-callback/v1/n1-message-notify --> github.com/omec-project/amf/httpcallback.HTTPN1MessageNotify (4 handlers)
[GIN-debug] POST /namf-callback/v1/nf-status-notify --> github.com/omec-project/amf/httpcallback.HTTPNfSubscriptionStatusNotify (4 handlers)
[GIN-debug] GET /namf-oam/v1/ --> github.com/omec-project/amf/oam.Index (4 handlers)
[GIN-debug] GET /namf-oam/v1/registered-ue-context --> github.com/omec-project/amf/oam.HTTPRegisteredUEContext (4 handlers)
[GIN-debug] GET /namf-oam/v1/registered-ue-context/:supi --> github.com/omec-project/amf/oam.HTTPRegisteredUEContext (4 handlers)
[GIN-debug] DELETE /namf-oam/v1/purge-ue-context/:supi --> github.com/omec-project/amf/oam.HTTPPurgeUEContext (4 handlers)
2023-11-26T23:42:23Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
[GIN-debug] GET /namf-oam/v1/active-ues --> github.com/omec-project/amf/oam.HTTPGetActiveUes (4 handlers)
[GIN-debug] POST /namf-oam/v1/amfInstanceDown/:nfid --> github.com/omec-project/amf/oam.HTTPAmfInstanceDown (4 handlers)
[GIN-debug] GET /namf-comm/v1/ --> github.com/omec-project/amf/communication.Index (4 handlers)
2023-11-26T23:42:23Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
[GIN-debug] PUT /namf-comm/v1/subscriptions/:subscriptionId --> github.com/omec-project/amf/communication.HTTPAMFStatusChangeSubscribeModify (4 handlers)
[GIN-debug] DELETE /namf-comm/v1/subscriptions/:subscriptionId --> github.com/omec-project/amf/communication.HTTPAMFStatusChangeUnSubscribe (4 handlers)
2023/11/26 23:42:23 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
[GIN-debug] PUT /namf-comm/v1/ue-contexts/:ueContextId --> github.com/omec-project/amf/communication.HTTPCreateUEContext (4 handlers)
[GIN-debug] POST /namf-comm/v1/ue-contexts/:ueContextId/assign-ebi --> github.com/omec-project/amf/communication.HTTPEBIAssignment (4 handlers)
2023/11/26 23:42:23 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
[GIN-debug] POST /namf-comm/v1/ue-contexts/:ueContextId/transfer-update --> github.com/omec-project/amf/communication.HTTPRegistrationStatusUpdate (4 handlers)
2023-11-26T23:42:23Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
[GIN-debug] POST /namf-comm/v1/ue-contexts/:ueContextId/release --> github.com/omec-project/amf/communication.HTTPReleaseUEContext (4 handlers)
[GIN-debug] POST /namf-comm/v1/ue-contexts/:ueContextId/transfer --> github.com/omec-project/amf/communication.HTTPUEContextTransfer (4 handlers)
[GIN-debug] DELETE /namf-comm/v1/ue-contexts/:ueContextId/n1-n2-messages/subscriptions/:subscriptionId --> github.com/omec-project/amf/communication.HTTPN1N2MessageUnSubscribe (4 handlers)
[GIN-debug] POST /namf-comm/v1/ue-contexts/:ueContextId/n1-n2-messages --> github.com/omec-project/amf/communication.HTTPN1N2MessageTransfer (4 handlers)
[GIN-debug] GET /namf-comm/v1/ue-contexts/:ueContextId/n1-n2-messages/:n1N2MessageId --> github.com/omec-project/amf/communication.HTTPN1N2MessageTransferStatus (4 handlers)
[GIN-debug] POST /namf-comm/v1/ue-contexts/:ueContextId/n1-n2-messages/subscriptions --> github.com/omec-project/amf/communication.HTTPN1N2MessageSubscribe (4 handlers)
[GIN-debug] DELETE /namf-comm/v1/non-ue-n2-messages/subscriptions/:n2NotifySubscriptionId --> github.com/omec-project/amf/communication.HTTPNonUeN2InfoUnSubscribe (4 handlers)
[GIN-debug] POST /namf-comm/v1/non-ue-n2-messages/transfer --> github.com/omec-project/amf/communication.HTTPNonUeN2MessageTransfer (4 handlers)
[GIN-debug] POST /namf-comm/v1/non-ue-n2-messages/subscriptions --> github.com/omec-project/amf/communication.HTTPNonUeN2InfoSubscribe (4 handlers)
[GIN-debug] POST /namf-comm/v1/subscriptions --> github.com/omec-project/amf/communication.HTTPAMFStatusChangeSubscribe (4 handlers)
[GIN-debug] GET /namf-evts/v1/ --> github.com/omec-project/amf/eventexposure.Index (4 handlers)
[GIN-debug] DELETE /namf-evts/v1/subscriptions/:subscriptionId --> github.com/omec-project/amf/eventexposure.HTTPDeleteSubscription (4 handlers)
[GIN-debug] PATCH /namf-evts/v1/subscriptions/:subscriptionId --> github.com/omec-project/amf/eventexposure.HTTPModifySubscription (4 handlers)
[GIN-debug] POST /namf-evts/v1/subscriptions --> github.com/omec-project/amf/eventexposure.HTTPCreateSubscription (4 handlers)
[GIN-debug] GET /namf-mt/v1/ --> github.com/omec-project/amf/mt.Index (4 handlers)
[GIN-debug] GET /namf-mt/v1/ue-contexts/:ueContextId --> github.com/omec-project/amf/mt.HTTPProvideDomainSelectionInfo (4 handlers)
[GIN-debug] POST /namf-mt/v1/ue-contexts/:ueContextId/ue-reachind --> github.com/omec-project/amf/mt.HTTPEnableUeReachability (4 handlers)
[GIN-debug] GET /namf-loc/v1/ --> github.com/omec-project/amf/location.Index (4 handlers)
[GIN-debug] POST /namf-loc/v1/:ueContextId/provide-loc-info --> github.com/omec-project/amf/location.HTTPProvideLocationInfo (4 handlers)
[GIN-debug] POST /namf-loc/v1/:ueContextId/provide-pos-info --> github.com/omec-project/amf/location.HTTPProvidePositioningInfo (4 handlers)
2023-11-26T23:42:23Z[36m [INFO][AMF][Util] [0mamfconfig Info: Version[1.0.0] Description[AMF initial configuration]
2023-11-26T23:42:23Z[36m [INFO][AMF][Util] [0mNfId Instance: fec017c8-d87f-4261-83d8-cd467d6a22cb
2023-11-26T23:42:23Z[37m [DEBU][DRSM][App] [0mCLIENT ID: {amf-5887bbf6c5-gtqb6 fec017c8-d87f-4261-83d8-cd467d6a22cb 10.42.0.22}
2023-11-26T23:42:23Z[37m [DEBU][DRSM][App] [0mdrsm mode set to 0
2023/11/26 23:42:23 ChunkId in the range of 0 to 16384
2023-11-26T23:42:23Z[37m [DEBU][DRSM][App] [0mipmodule &{24 0 <nil> map[]}
2023/11/26 23:42:23 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:23 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:23 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:23 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:24 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:24 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:24 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:24Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:24Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:24 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:24Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:24 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023/11/26 23:42:24 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:24 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:24Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:24 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:24 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:24 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:24 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:25 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:25 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:25 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:25Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:25Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:25Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:25 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:25 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:25Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:25Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:25Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:25 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023-11-26T23:42:25Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:25 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023/11/26 23:42:25 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:25 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:25 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:25 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:26 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:26 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:26 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:26Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:26Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:26Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:26Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:26Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:26 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:26 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:26Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:26 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:26 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:26Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:26 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:26 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:26 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:26 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:27 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:27 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:27 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:27Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:27Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:27Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:27 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:27Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:27 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:27Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:27 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:27 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:27Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:27 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:27 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:27 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:27 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:28 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:28 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:28 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:28Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:28Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:28Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:28Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:28 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:28 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:28Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:28 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:28 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:28Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:28 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:28 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:28 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:28 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:29 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:29 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:29 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:29Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:29Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:29Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:29Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:29Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:29Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:29Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:29 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:29 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:29Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:29Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:29 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023-11-26T23:42:29Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:29 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023/11/26 23:42:29 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:29 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:29 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:29 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:30 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:30 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:30 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:30Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:30Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:30 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:30Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:30 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:30Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:30 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:30 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:30Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:30 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:30 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:30 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:30 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:31 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:31 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:31 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:31Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:31Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:31Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:31 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:31 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:31Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:31Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:31 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023-11-26T23:42:31Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:31 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023/11/26 23:42:31 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:31 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:31 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:31 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:32 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:32 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:32 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:32Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:32Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:32Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:32Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:32Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:32 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:32 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:32Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:32Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:32 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023-11-26T23:42:32Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:32 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023/11/26 23:42:32 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:32 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:32 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:32 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:33 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:33 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:33 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:33Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:33Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:33Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:33Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:33 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:33Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:33 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:33Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:33Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:33Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:33 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:33 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:33Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:33 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:33 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:33 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:33 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:34 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:34 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:34 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:34Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:34Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:34 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:34 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:34Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:34 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:34 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:34Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:34 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:34 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:34 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:34 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:35 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:35 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:35 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:35Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:35Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:35Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:35 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:35Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:35 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:35Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:35Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:35 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:35 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:35Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:35 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:35 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:35 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:35 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:36 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:36 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:36 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:36Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:36Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:36 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:36 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:36Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:36 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023-11-26T23:42:36Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:36 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023/11/26 23:42:36 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:36 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:36 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:36 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:37 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:37 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:37 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:37 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:37 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:37 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:37 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:37Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:37 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:37 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:37 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:37 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:38 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:38 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:38 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:38Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:38Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:38 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:38Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:38 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:38Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:38 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:39 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:39Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:39 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:39 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:39 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:39 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:40 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:40 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:40 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:40Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:40Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:40Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:40Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:40 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:40Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:40 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:40Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:40Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:40 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023-11-26T23:42:40Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:40 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023/11/26 23:42:40 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:40 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:40 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:40 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:41 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:41 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:41 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:41Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:41Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:41Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:41 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:41 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:41Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:41 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:41 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:41Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:41 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:41 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:41 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:41 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:42 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:42 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:42 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:42Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:42Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:42Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:42 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:42 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:42Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:42 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:42 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:42Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:42 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:42 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:42 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:42 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:43 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:43 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:43 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:43Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:43Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:43 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:43Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:43 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:43Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:43Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:43 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023-11-26T23:42:43Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:43 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023/11/26 23:42:43 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:43 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:43 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:43 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:44 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:44 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:44 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:44Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:44Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:44Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:44Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:44 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:44 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:44Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:44Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:44Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:44 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:44 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:44Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:44 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:44 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:44 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:44 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:45 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:45 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:45 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:45Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:45Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:45Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:45 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:45 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:45Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:45Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:45Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:45 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:45 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:45Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:45 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:45 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:45 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:45 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:46 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:46 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:46 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:46Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:46Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:46 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:46Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:46 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023/11/26 23:42:46 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:46 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:46Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:46 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:46 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:46 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:46 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:47 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:47 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:47 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:47Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:47Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:47 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:47 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:47Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:47Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:47 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:47 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:47Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:47 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:47 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:47 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:47 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:47 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:47 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:47 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:47Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:47Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:47 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:47 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:47Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:47 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023-11-26T23:42:47Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:47 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023/11/26 23:42:47 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:47 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:47 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:47 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:49 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:49 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:49 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:49 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:49 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:49 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:49 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:49Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:49 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:49 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:49 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:49 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:50 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:50 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:50 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:50 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:50 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:50 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023-11-26T23:42:50Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:50 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023/11/26 23:42:50 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:50 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:50 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:50 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:51 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:51 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:51 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:51Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:51Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:51 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023/11/26 23:42:51 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:51Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:51 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:51 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:51Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:51 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:51 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:51 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:51 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:52 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:52 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:52 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:52Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:52Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:52 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:52Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:52 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:52Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:52 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:52 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:52Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:52 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:52 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:52 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:52 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023-11-26T23:42:52Z[37m [DEBU][DRSM][App] [0mipmodule &{{0 0} 0xc000444020}
2023-11-26T23:42:52Z[37m [DEBU][DRSM][App] [0mip module prefix map[]
2023-11-26T23:42:52Z[37m [DEBU][DRSM][App] [0mSetMongoDB done sdcore_amf
Started Pod Down goroutine
2023-11-26T23:42:52Z[36m [INFO][AMF][Context] [0mMondbName: sdcore_amf, Url: mongodb://mongodb-arbiter-headless
2023-11-26T23:42:52Z[37m [DEBU][DRSM][App] [0mdocument expiry enabled
2023-11-26T23:42:52Z[36m [INFO][AMF][Context] [0mSuccessfully connected to Mongodb
2023-11-26T23:42:52Z[36m [INFO][AMF][NGAP] [0mListen on 127.0.0.1/[::1%lo]/[fe80::c43d:49ff:feff:5580%eth0]/10.42.0.22:38412
2023-11-26T23:42:52Z[37m [DEBU][DRSM][App] [0miterate change stream for podData &{{0 0} amfid {amf-5887bbf6c5-gtqb6 fec017c8-d87f-4261-83d8-cd467d6a22cb 10.42.0.22} {mongodb://mongodb-arbiter-headless sdcore_amf} 0 24 map[] map[] map[] 0xc0003fd320 map[] 16384 <nil> 0xc000a24090 map[] 0xc0006682d0}
2023-11-26T23:42:52Z[37m [DEBU][DRSM][App] [0mTTL Index created for Field : expireAt in Collection
2023-11-26T23:42:52Z[36m [INFO][LIB][MonDB] [0mCreated index : supi_1 on keyField : supi for Collection : amf.data.amfState
2023-11-26T23:42:52Z[36m [INFO][LIB][MonDB] [0mCreated index : guti_1 on keyField : guti for Collection : amf.data.amfState
2023-11-26T23:42:52Z[36m [INFO][LIB][MonDB] [0mCreated index : tmsi_1 on keyField : tmsi for Collection : amf.data.amfState
2023/11/26 23:42:53 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE
2023/11/26 23:42:53 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {IDLE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:53 INFO: [core] [Channel #1] Channel Connectivity change to IDLE
2023-11-26T23:42:53Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:53Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023-11-26T23:42:53Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:53 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to CONNECTING
2023-11-26T23:42:53Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:53 INFO: [core] [Channel #1 SubChannel #2] Subchannel picks a new address "webui:9876" to connect
2023-11-26T23:42:53Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:53 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {CONNECTING <nil>}
2023/11/26 23:42:53 INFO: [core] [Channel #1] Channel Connectivity change to CONNECTING
2023-11-26T23:42:53Z[31m [ERRO][Config5g][GRPC] [0mConnectivity status idle, trying to connect again
2023/11/26 23:42:53 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {
"Addr": "webui:9876",
"ServerName": "webui:9876",
"Attributes": null,
"BalancerAttributes": null,
"Type": 0,
"Metadata": null
}. Err: connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"
2023/11/26 23:42:53 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to TRANSIENT_FAILURE
2023/11/26 23:42:53 INFO: [core] pickfirstBalancer: UpdateSubConnState: 0xc00079d010, {TRANSIENT_FAILURE connection error: desc = "transport: Error while dialing dial tcp 10.42.247.119:9876: connect: connection refused"}
2023/11/26 23:42:53 INFO: [core] [Channel #1] Channel Connectivity change to TRANSIENT_FAILURE
2023-11-26T23:42:53Z[36m [INFO][AMF][NGAP] [0m[AMF] SCTP Accept from: 128.84.155.135:20125
2023/11/26 23:42:54 INFO: [core] [Channel #1 SubChannel #2] Subchannel Connectivity change to IDLE