Newer
Older
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
[2025-03-01 02:33:09,389] INFO:__main__:Starting...
[2025-03-01 02:33:09,390] INFO:service.service.ServiceService:Starting Service (tentative endpoint: 0.0.0.0:3030, max_workers: 200)...
[2025-03-01 02:33:09,397] INFO:service.service.ServiceService:Listening on 0.0.0.0:3030...
[2025-03-01 02:35:43,083] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_PLANNED)', 'connection(ca8ed690-3732-4361-8e48-eb4d739de736):configure', 'connection(fab1822c-439b-4cf7-8bd0-5b327f8151b8):configure', 'service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_ACTIVE)']
[2025-03-01 02:35:43,284] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:43,284] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:43,298] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 1, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"0\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"0\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:35:43,743] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "9c2cd5c3-6aeb-550a-be35-06d716c51a45"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON2\", \"type\": \"optical-roadm\", \"channels\": [], \"roadm_uuid\": {\"roadm_uuid\": \"07251ce0-12f4-56f3-97b9-5902d3fd7129\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 1, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"decb9c95-7298-5ec8-a4b6-7f276f595106\", \"9cde3e12-2cb5-5a95-878c-b80528ce090e\"], [\"3d69f463-3c15-543e-b230-02bb5ac858dc\", \"4719df0d-102c-567c-ad6d-a8b2ced3598c\"]]}"
device_id {
device_uuid {
uuid: "5dc3f5d7-d3a9-5057-a9a0-8af943a5461c"
}
}
[2025-03-01 02:35:44,079] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 1, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0\"], [\"0\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:35:44,617] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:44,617] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:44,635] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "660e2a2a-a893-5902-825b-4f856be2cb23"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"5f1083fb-4487-5e20-9c56-073d01f560d7\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 1, \"ob_id\": 1, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"0\", \"5eb4f156-7811-53f3-9172-8402127cf7b9\"]]}"
device_id {
device_uuid {
uuid: "4dbdc2d8-cbde-5e48-a3c0-5161387a58c7"
}
}
[2025-03-01 02:35:44,790] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"2\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"1\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 1, \"ob_id\": 1, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"d9f313b6-3424-540a-86bf-ed549f9674f5\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"a1bf6395-4a6f-5040-8f22-6fe26b8f8678\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:35:45,281] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"2\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"1\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 1, \"ob_id\": 1, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0a6d1215-ae18-5a3b-b511-39a29c85597e\"], [\"b18058e8-f1a4-5a22-adb4-234fb4e00ac2\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:35:45,771] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "47483eb2-dc16-5d95-915a-69ef836dd7e7"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"61eb9c9a-b02c-5477-a45c-a5d0f3c458ed\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 1, \"ob_id\": 1, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"2a307a8e-d326-5ea2-9437-b0320fb4c2a6\", \"0\"]]}"
device_id {
device_uuid {
uuid: "87d74166-65e3-595e-b643-122b4fd0303f"
}
}
[2025-03-01 02:35:52,535] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:52,536] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:52,619] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:52,620] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:52,655] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:52,656] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:52,656] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_ACTIVE)', 'optical_connection(ca8ed690-3732-4361-8e48-eb4d739de736):deconfigure', 'optical_connection(fab1822c-439b-4cf7-8bd0-5b327f8151b8):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43)_Config:delete', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):delete']
[2025-03-01 02:35:52,687] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:52,687] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:52,688] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:52,688] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:35:52,688] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 0, 4dbdc2d8-cbde-5e48-a3c0-5161387a58c7, 5eb4f156-7811-53f3-9172-8402127cf7b9
[2025-03-01 02:35:52,689] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 1, e455280b-9147-5251-9fc9-2c977c4a007f, d9f313b6-3424-540a-86bf-ed549f9674f5
[2025-03-01 02:35:52,689] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 2, e455280b-9147-5251-9fc9-2c977c4a007f, e455280b-9147-5251-9fc9-2c977c4a007f
[2025-03-01 02:35:52,689] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 3, e455280b-9147-5251-9fc9-2c977c4a007f, daceaedc-be47-5012-b3b8-fb28781841c2
[2025-03-01 02:35:52,689] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 4, e455280b-9147-5251-9fc9-2c977c4a007f, e455280b-9147-5251-9fc9-2c977c4a007f
[2025-03-01 02:35:52,689] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 5, ea2fbf55-86af-5658-b79f-80d477f5d361, bfff28a1-4c1a-5e4d-b939-04afb9b85bf1
[2025-03-01 02:35:52,689] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 6, ea2fbf55-86af-5658-b79f-80d477f5d361, ea2fbf55-86af-5658-b79f-80d477f5d361
[2025-03-01 02:35:52,689] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 7, ea2fbf55-86af-5658-b79f-80d477f5d361, b18058e8-f1a4-5a22-adb4-234fb4e00ac2
[2025-03-01 02:35:52,689] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 8, ea2fbf55-86af-5658-b79f-80d477f5d361, ea2fbf55-86af-5658-b79f-80d477f5d361
[2025-03-01 02:35:52,689] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 9, 87d74166-65e3-595e-b643-122b4fd0303f, 2a307a8e-d326-5ea2-9437-b0320fb4c2a6
[2025-03-01 02:35:52,689] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('0', '5eb4f156-7811-53f3-9172-8402127cf7b9')]
[2025-03-01 02:35:52,701] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "660e2a2a-a893-5902-825b-4f856be2cb23"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"5f1083fb-4487-5e20-9c56-073d01f560d7\"}, \"new_config\": {\"frequency\": null, \"band\": null}, \"flow\": [[\"0\", \"1\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "4dbdc2d8-cbde-5e48-a3c0-5161387a58c7"
}
}
[2025-03-01 02:35:52,845] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('d9f313b6-3424-540a-86bf-ed549f9674f5', 'c95752ca-692d-5996-a0bf-6b057e782e41'), ('daceaedc-be47-5012-b3b8-fb28781841c2', 'a1bf6395-4a6f-5040-8f22-6fe26b8f8678')]
[2025-03-01 02:35:52,855] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"2\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"1\", \"channel_index\": \"1\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"1\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"1\", \"channel_index\": \"2\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"flow_id\": 1, \"frequency\": null, \"band\": null}, \"flow\": [[\"d9f313b6-3424-540a-86bf-ed549f9674f5\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"a1bf6395-4a6f-5040-8f22-6fe26b8f8678\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:35:53,330] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('bfff28a1-4c1a-5e4d-b939-04afb9b85bf1', '0a6d1215-ae18-5a3b-b511-39a29c85597e'), ('b18058e8-f1a4-5a22-adb4-234fb4e00ac2', '27b3e289-7fea-5ce6-8080-60aeb6c0c0a2')]
[2025-03-01 02:35:53,354] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"2\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"1\", \"channel_index\": \"1\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"1\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"1\", \"channel_index\": \"2\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"flow_id\": 1, \"frequency\": null, \"band\": null}, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0a6d1215-ae18-5a3b-b511-39a29c85597e\"], [\"b18058e8-f1a4-5a22-adb4-234fb4e00ac2\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:35:53,806] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('2a307a8e-d326-5ea2-9437-b0320fb4c2a6', '0')]
[2025-03-01 02:35:53,818] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "47483eb2-dc16-5d95-915a-69ef836dd7e7"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"61eb9c9a-b02c-5477-a45c-a5d0f3c458ed\"}, \"new_config\": {\"frequency\": null, \"band\": null}, \"flow\": [[\"1\", \"0\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "87d74166-65e3-595e-b643-122b4fd0303f"
}
}
[2025-03-01 02:36:12,729] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:36:12,729] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:36:12,855] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:36:12,855] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:36:12,856] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_ACTIVE)', 'optical_connection(ca8ed690-3732-4361-8e48-eb4d739de736):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):delete']
[2025-03-01 02:36:12,885] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:36:12,885] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:36:12,885] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 0, e455280b-9147-5251-9fc9-2c977c4a007f, c95752ca-692d-5996-a0bf-6b057e782e41
[2025-03-01 02:36:12,885] INFO:service.service.service_handlers.oc.OCTools:connection is bidirectional
[2025-03-01 02:36:12,885] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 2, 5dc3f5d7-d3a9-5057-a9a0-8af943a5461c, decb9c95-7298-5ec8-a4b6-7f276f595106
[2025-03-01 02:36:12,885] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 6, ea2fbf55-86af-5658-b79f-80d477f5d361, bfff28a1-4c1a-5e4d-b939-04afb9b85bf1
[2025-03-01 02:36:12,885] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('0', 'c95752ca-692d-5996-a0bf-6b057e782e41'), ('daceaedc-be47-5012-b3b8-fb28781841c2', '0')]
[2025-03-01 02:36:12,913] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"2\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"1\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"ob_id\": 1, \"frequency\": null, \"band\": null}, \"flow\": [[\"0\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"0\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:36:16,004] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('decb9c95-7298-5ec8-a4b6-7f276f595106', '9cde3e12-2cb5-5a95-878c-b80528ce090e'), ('3d69f463-3c15-543e-b230-02bb5ac858dc', '4719df0d-102c-567c-ad6d-a8b2ced3598c')]
[2025-03-01 02:36:16,013] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "9c2cd5c3-6aeb-550a-be35-06d716c51a45"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON2\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"2\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"1\"}], \"roadm_uuid\": {\"roadm_uuid\": \"07251ce0-12f4-56f3-97b9-5902d3fd7129\"}, \"new_config\": {\"ob_id\": 1, \"frequency\": null, \"band\": null}, \"flow\": [[\"decb9c95-7298-5ec8-a4b6-7f276f595106\", \"9cde3e12-2cb5-5a95-878c-b80528ce090e\"], [\"3d69f463-3c15-543e-b230-02bb5ac858dc\", \"4719df0d-102c-567c-ad6d-a8b2ced3598c\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "5dc3f5d7-d3a9-5057-a9a0-8af943a5461c"
}
}
[2025-03-01 02:36:18,840] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('bfff28a1-4c1a-5e4d-b939-04afb9b85bf1', '0'), ('0', '27b3e289-7fea-5ce6-8080-60aeb6c0c0a2')]
[2025-03-01 02:36:18,849] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"2\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"1\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"ob_id\": 1, \"frequency\": null, \"band\": null}, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0\"], [\"0\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:36:59,809] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_PLANNED)', 'connection(6633d2e7-f991-4927-bda9-1379e2939549):configure', 'connection(473bd4b2-0e3f-413b-b4b0-9a04c6768ba1):configure', 'service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_ACTIVE)']
[2025-03-01 02:36:59,957] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:36:59,958] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:36:59,966] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 3, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"0\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"0\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:37:00,443] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "9c2cd5c3-6aeb-550a-be35-06d716c51a45"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON2\", \"type\": \"optical-roadm\", \"channels\": [], \"roadm_uuid\": {\"roadm_uuid\": \"07251ce0-12f4-56f3-97b9-5902d3fd7129\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 3, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"decb9c95-7298-5ec8-a4b6-7f276f595106\", \"9cde3e12-2cb5-5a95-878c-b80528ce090e\"], [\"3d69f463-3c15-543e-b230-02bb5ac858dc\", \"4719df0d-102c-567c-ad6d-a8b2ced3598c\"]]}"
device_id {
device_uuid {
uuid: "5dc3f5d7-d3a9-5057-a9a0-8af943a5461c"
}
}
[2025-03-01 02:37:00,675] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 3, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0\"], [\"0\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:37:01,158] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:37:01,159] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:37:01,169] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "660e2a2a-a893-5902-825b-4f856be2cb23"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"5f1083fb-4487-5e20-9c56-073d01f560d7\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 3, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"0\", \"5eb4f156-7811-53f3-9172-8402127cf7b9\"]]}"
device_id {
device_uuid {
uuid: "4dbdc2d8-cbde-5e48-a3c0-5161387a58c7"
}
}
[2025-03-01 02:37:01,310] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 3, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"d9f313b6-3424-540a-86bf-ed549f9674f5\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"a1bf6395-4a6f-5040-8f22-6fe26b8f8678\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:37:01,800] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 3, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0a6d1215-ae18-5a3b-b511-39a29c85597e\"], [\"b18058e8-f1a4-5a22-adb4-234fb4e00ac2\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:37:02,275] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "47483eb2-dc16-5d95-915a-69ef836dd7e7"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"61eb9c9a-b02c-5477-a45c-a5d0f3c458ed\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 3, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"2a307a8e-d326-5ea2-9437-b0320fb4c2a6\", \"0\"]]}"
device_id {
device_uuid {
uuid: "87d74166-65e3-595e-b643-122b4fd0303f"
}
}
[2025-03-01 02:37:40,824] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/929162cd-9ea7-5be2-801d-2029b3f32a91):set_status(SERVICESTATUS_PLANNED)', 'connection(244aa26b-bde6-49eb-8435-80d95aac2db6):configure', 'service(43813baf-195e-5da6-af20-b3d0922e71a7/929162cd-9ea7-5be2-801d-2029b3f32a91):set_status(SERVICESTATUS_ACTIVE)']
[2025-03-01 02:37:40,974] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "929162cd-9ea7-5be2-801d-2029b3f32a91"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:37:40,974] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "929162cd-9ea7-5be2-801d-2029b3f32a91"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:37:40,987] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "dafc79b2-5bc0-59da-8190-c593d07ddb4a"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.2\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"760c80c3-9ca9-557a-b0af-6fc578268017\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192156250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 5, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"0\", \"7dc65d0e-af57-5d3c-9ba6-f6ec81a354c6\"]]}"
device_id {
device_uuid {
uuid: "27c2ed23-e74a-518f-820d-ae2c8ae23086"
}
}
[2025-03-01 02:37:41,143] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192156250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 5, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"38ad3c6c-b437-589f-b384-4613b70e7939\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"f9eb897b-3060-5745-ac45-f0bee12f9669\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:37:41,602] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192156250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 5, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"fad5757b-2a41-5502-8387-64c0d3575394\"], [\"7b9c3695-1128-576e-9a4a-a870ade20a36\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:37:42,088] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "0165915f-c477-5668-a72e-b478ed88a3c2"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.2\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"767706ac-46f0-534a-8d8c-01551c8822bd\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192156250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 5, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"c4b8eb66-2fcf-5f66-802f-6cd9590fe70b\", \"0\"]]}"
device_id {
device_uuid {
uuid: "012c4e67-0024-5f30-b527-55ec6daf2639"
}
}
[2025-03-01 02:37:50,244] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c):set_status(SERVICESTATUS_PLANNED)', 'connection(d61c0e0c-0436-4efb-8092-68e12ca7f0d9):configure', 'connection(1e5c27af-18d3-4dd7-82f0-ee6c4814efbc):configure', 'service(43813baf-195e-5da6-af20-b3d0922e71a7/1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c):set_status(SERVICESTATUS_ACTIVE)']
[2025-03-01 02:37:50,376] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:37:50,376] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:37:50,386] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192381250, \"frequency\": 192193750, \"band\": 375000, \"ob_id\": 3, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"0\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"0\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:37:50,653] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "9c2cd5c3-6aeb-550a-be35-06d716c51a45"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON2\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"07251ce0-12f4-56f3-97b9-5902d3fd7129\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192381250, \"frequency\": 192193750, \"band\": 375000, \"ob_id\": 3, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"decb9c95-7298-5ec8-a4b6-7f276f595106\", \"9cde3e12-2cb5-5a95-878c-b80528ce090e\"], [\"3d69f463-3c15-543e-b230-02bb5ac858dc\", \"4719df0d-102c-567c-ad6d-a8b2ced3598c\"]]}"
device_id {
device_uuid {
uuid: "5dc3f5d7-d3a9-5057-a9a0-8af943a5461c"
}
}
[2025-03-01 02:37:50,928] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192381250, \"frequency\": 192193750, \"band\": 375000, \"ob_id\": 3, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0\"], [\"0\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:37:51,304] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:37:51,304] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:37:51,316] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b43f48d9-e64b-58de-a469-bfd56563bfce"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.3\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"02b07a17-68ee-5341-ad5b-3b613bce9883\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192231250, \"operational-mode\": 1, \"band\": 50000, \"flow_id\": 7, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"0\", \"bbdfc5ef-4f8b-5921-9d1f-33dd9a5f18c8\"]]}"
device_id {
device_uuid {
uuid: "cf618e18-c0a1-58c4-9827-943a2c0523d6"
}
}
[2025-03-01 02:37:51,465] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192231250, \"operational-mode\": 1, \"band\": 50000, \"flow_id\": 7, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"5b2905dd-2016-54d6-98aa-345128c1fc3d\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"ad7f7e55-6068-556f-b74d-3601e39fd1fd\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:37:52,015] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192231250, \"operational-mode\": 1, \"band\": 50000, \"flow_id\": 7, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"693ac2c3-1a92-52ec-87bf-5a768126c4ca\"], [\"4ae49e5e-96d2-5222-8069-73e027ebe7f8\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:37:52,522] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "08125723-0ea2-5851-a9bc-9e1d074a0bf9"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.3\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"1ca1bd99-2aec-5765-876a-39f5ea7ad8b2\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192231250, \"operational-mode\": 1, \"band\": 50000, \"flow_id\": 7, \"ob_id\": 3, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"b1acaee3-904d-5106-ac3d-5ae6c42b5333\", \"0\"]]}"
device_id {
device_uuid {
uuid: "ce0cdfdd-2182-5027-8177-676ca3244f9d"
}
}
[2025-03-01 02:38:01,945] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:01,945] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:02,007] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:02,007] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:02,048] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:02,049] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:02,049] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c):set_status(SERVICESTATUS_ACTIVE)', 'optical_connection(1e5c27af-18d3-4dd7-82f0-ee6c4814efbc):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c)_Config:delete', 'optical_connection(d61c0e0c-0436-4efb-8092-68e12ca7f0d9):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c):delete']
[2025-03-01 02:38:02,076] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:02,076] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:02,076] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 0, cf618e18-c0a1-58c4-9827-943a2c0523d6, bbdfc5ef-4f8b-5921-9d1f-33dd9a5f18c8
[2025-03-01 02:38:02,077] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 1, e455280b-9147-5251-9fc9-2c977c4a007f, 5b2905dd-2016-54d6-98aa-345128c1fc3d
[2025-03-01 02:38:02,077] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 2, e455280b-9147-5251-9fc9-2c977c4a007f, e455280b-9147-5251-9fc9-2c977c4a007f
[2025-03-01 02:38:02,077] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 3, e455280b-9147-5251-9fc9-2c977c4a007f, daceaedc-be47-5012-b3b8-fb28781841c2
[2025-03-01 02:38:02,077] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 4, e455280b-9147-5251-9fc9-2c977c4a007f, e455280b-9147-5251-9fc9-2c977c4a007f
[2025-03-01 02:38:02,077] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 5, ea2fbf55-86af-5658-b79f-80d477f5d361, bfff28a1-4c1a-5e4d-b939-04afb9b85bf1
[2025-03-01 02:38:02,077] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 6, ea2fbf55-86af-5658-b79f-80d477f5d361, ea2fbf55-86af-5658-b79f-80d477f5d361
[2025-03-01 02:38:02,077] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 7, ea2fbf55-86af-5658-b79f-80d477f5d361, 4ae49e5e-96d2-5222-8069-73e027ebe7f8
[2025-03-01 02:38:02,077] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 8, ea2fbf55-86af-5658-b79f-80d477f5d361, ea2fbf55-86af-5658-b79f-80d477f5d361
[2025-03-01 02:38:02,077] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 9, ce0cdfdd-2182-5027-8177-676ca3244f9d, b1acaee3-904d-5106-ac3d-5ae6c42b5333
[2025-03-01 02:38:02,077] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('0', 'bbdfc5ef-4f8b-5921-9d1f-33dd9a5f18c8')]
[2025-03-01 02:38:02,089] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "b43f48d9-e64b-58de-a469-bfd56563bfce"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.3\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"02b07a17-68ee-5341-ad5b-3b613bce9883\"}, \"new_config\": {\"frequency\": null, \"band\": null}, \"flow\": [[\"0\", \"3\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "cf618e18-c0a1-58c4-9827-943a2c0523d6"
}
}
[2025-03-01 02:38:02,213] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('5b2905dd-2016-54d6-98aa-345128c1fc3d', 'c95752ca-692d-5996-a0bf-6b057e782e41'), ('daceaedc-be47-5012-b3b8-fb28781841c2', 'ad7f7e55-6068-556f-b74d-3601e39fd1fd')]
[2025-03-01 02:38:02,223] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"flow_id\": 7, \"frequency\": null, \"band\": null}, \"flow\": [[\"5b2905dd-2016-54d6-98aa-345128c1fc3d\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"ad7f7e55-6068-556f-b74d-3601e39fd1fd\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:38:02,644] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('bfff28a1-4c1a-5e4d-b939-04afb9b85bf1', '693ac2c3-1a92-52ec-87bf-5a768126c4ca'), ('4ae49e5e-96d2-5222-8069-73e027ebe7f8', '27b3e289-7fea-5ce6-8080-60aeb6c0c0a2')]
[2025-03-01 02:38:02,654] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"flow_id\": 7, \"frequency\": null, \"band\": null}, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"693ac2c3-1a92-52ec-87bf-5a768126c4ca\"], [\"4ae49e5e-96d2-5222-8069-73e027ebe7f8\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:38:03,155] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('b1acaee3-904d-5106-ac3d-5ae6c42b5333', '0')]
[2025-03-01 02:38:03,166] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "08125723-0ea2-5851-a9bc-9e1d074a0bf9"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.3\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"1ca1bd99-2aec-5765-876a-39f5ea7ad8b2\"}, \"new_config\": {\"frequency\": null, \"band\": null}, \"flow\": [[\"3\", \"0\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "ce0cdfdd-2182-5027-8177-676ca3244f9d"
}
}
[2025-03-01 02:38:03,318] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:03,319] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:08,770] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "929162cd-9ea7-5be2-801d-2029b3f32a91"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:08,770] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "929162cd-9ea7-5be2-801d-2029b3f32a91"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:08,842] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "929162cd-9ea7-5be2-801d-2029b3f32a91"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:08,842] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "929162cd-9ea7-5be2-801d-2029b3f32a91"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:08,842] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/929162cd-9ea7-5be2-801d-2029b3f32a91):set_status(SERVICESTATUS_ACTIVE)', 'optical_connection(244aa26b-bde6-49eb-8435-80d95aac2db6):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/929162cd-9ea7-5be2-801d-2029b3f32a91):delete']
[2025-03-01 02:38:08,871] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "929162cd-9ea7-5be2-801d-2029b3f32a91"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:08,871] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "929162cd-9ea7-5be2-801d-2029b3f32a91"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:08,871] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 0, 27c2ed23-e74a-518f-820d-ae2c8ae23086, 7dc65d0e-af57-5d3c-9ba6-f6ec81a354c6
[2025-03-01 02:38:08,872] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 1, e455280b-9147-5251-9fc9-2c977c4a007f, 38ad3c6c-b437-589f-b384-4613b70e7939
[2025-03-01 02:38:08,872] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 2, e455280b-9147-5251-9fc9-2c977c4a007f, e455280b-9147-5251-9fc9-2c977c4a007f
[2025-03-01 02:38:08,872] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 3, e455280b-9147-5251-9fc9-2c977c4a007f, daceaedc-be47-5012-b3b8-fb28781841c2
[2025-03-01 02:38:08,872] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 4, e455280b-9147-5251-9fc9-2c977c4a007f, e455280b-9147-5251-9fc9-2c977c4a007f
[2025-03-01 02:38:08,872] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 5, ea2fbf55-86af-5658-b79f-80d477f5d361, bfff28a1-4c1a-5e4d-b939-04afb9b85bf1
[2025-03-01 02:38:08,872] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 6, ea2fbf55-86af-5658-b79f-80d477f5d361, ea2fbf55-86af-5658-b79f-80d477f5d361
[2025-03-01 02:38:08,872] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 7, ea2fbf55-86af-5658-b79f-80d477f5d361, 7b9c3695-1128-576e-9a4a-a870ade20a36
[2025-03-01 02:38:08,872] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 8, ea2fbf55-86af-5658-b79f-80d477f5d361, ea2fbf55-86af-5658-b79f-80d477f5d361
[2025-03-01 02:38:08,872] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 9, 012c4e67-0024-5f30-b527-55ec6daf2639, c4b8eb66-2fcf-5f66-802f-6cd9590fe70b
[2025-03-01 02:38:08,872] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('0', '7dc65d0e-af57-5d3c-9ba6-f6ec81a354c6')]
[2025-03-01 02:38:08,884] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "dafc79b2-5bc0-59da-8190-c593d07ddb4a"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.2\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"760c80c3-9ca9-557a-b0af-6fc578268017\"}, \"new_config\": {\"frequency\": null, \"band\": null}, \"flow\": [[\"0\", \"2\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "27c2ed23-e74a-518f-820d-ae2c8ae23086"
}
}
[2025-03-01 02:38:09,064] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('38ad3c6c-b437-589f-b384-4613b70e7939', 'c95752ca-692d-5996-a0bf-6b057e782e41'), ('daceaedc-be47-5012-b3b8-fb28781841c2', 'f9eb897b-3060-5745-ac45-f0bee12f9669')]
[2025-03-01 02:38:09,075] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"flow_id\": 5, \"frequency\": null, \"band\": null}, \"flow\": [[\"38ad3c6c-b437-589f-b384-4613b70e7939\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"f9eb897b-3060-5745-ac45-f0bee12f9669\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:38:09,507] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('bfff28a1-4c1a-5e4d-b939-04afb9b85bf1', 'fad5757b-2a41-5502-8387-64c0d3575394'), ('7b9c3695-1128-576e-9a4a-a870ade20a36', '27b3e289-7fea-5ce6-8080-60aeb6c0c0a2')]
[2025-03-01 02:38:09,518] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"flow_id\": 5, \"frequency\": null, \"band\": null}, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"fad5757b-2a41-5502-8387-64c0d3575394\"], [\"7b9c3695-1128-576e-9a4a-a870ade20a36\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:38:10,023] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('c4b8eb66-2fcf-5f66-802f-6cd9590fe70b', '0')]
[2025-03-01 02:38:10,033] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "0165915f-c477-5668-a72e-b478ed88a3c2"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.2\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"767706ac-46f0-534a-8d8c-01551c8822bd\"}, \"new_config\": {\"frequency\": null, \"band\": null}, \"flow\": [[\"2\", \"0\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "012c4e67-0024-5f30-b527-55ec6daf2639"
}
}
[2025-03-01 02:38:14,835] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:14,835] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:14,840] ERROR:service.service.ServiceServiceServicerImpl:DeleteService exception
Traceback (most recent call last):
File "/var/teraflow/common/method_wrappers/Decorator.py", line 220, in inner_wrapper
reply = func(self, request, grpc_context)
File "/var/teraflow/service/service/ServiceServiceServicerImpl.py", line 412, in DeleteService
tasks_scheduler.compose_from_optical_service(service, params=params,is_delete=True )
File "/var/teraflow/service/service/task_scheduler/TaskScheduler.py", line 253, in compose_from_optical_service
raise Exception(MSG)
Exception: Deleteion for the service is not Allowed , Served Lightpaths is not empty
[2025-03-01 02:38:19,855] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:19,856] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:19,917] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:19,917] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:19,956] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:19,956] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:19,956] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_ACTIVE)', 'optical_connection(473bd4b2-0e3f-413b-b4b0-9a04c6768ba1):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43)_Config:delete', 'optical_connection(6633d2e7-f991-4927-bda9-1379e2939549):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):delete']
[2025-03-01 02:38:19,983] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:19,983] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:19,983] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 0, 4dbdc2d8-cbde-5e48-a3c0-5161387a58c7, 5eb4f156-7811-53f3-9172-8402127cf7b9
[2025-03-01 02:38:19,984] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 1, e455280b-9147-5251-9fc9-2c977c4a007f, d9f313b6-3424-540a-86bf-ed549f9674f5
[2025-03-01 02:38:19,984] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 2, e455280b-9147-5251-9fc9-2c977c4a007f, e455280b-9147-5251-9fc9-2c977c4a007f
[2025-03-01 02:38:19,984] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 3, e455280b-9147-5251-9fc9-2c977c4a007f, daceaedc-be47-5012-b3b8-fb28781841c2
[2025-03-01 02:38:19,984] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 4, e455280b-9147-5251-9fc9-2c977c4a007f, e455280b-9147-5251-9fc9-2c977c4a007f
[2025-03-01 02:38:19,984] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 5, ea2fbf55-86af-5658-b79f-80d477f5d361, bfff28a1-4c1a-5e4d-b939-04afb9b85bf1
[2025-03-01 02:38:19,984] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 6, ea2fbf55-86af-5658-b79f-80d477f5d361, ea2fbf55-86af-5658-b79f-80d477f5d361
[2025-03-01 02:38:19,984] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 7, ea2fbf55-86af-5658-b79f-80d477f5d361, b18058e8-f1a4-5a22-adb4-234fb4e00ac2
[2025-03-01 02:38:19,984] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 8, ea2fbf55-86af-5658-b79f-80d477f5d361, ea2fbf55-86af-5658-b79f-80d477f5d361
[2025-03-01 02:38:19,984] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 9, 87d74166-65e3-595e-b643-122b4fd0303f, 2a307a8e-d326-5ea2-9437-b0320fb4c2a6
[2025-03-01 02:38:19,984] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('0', '5eb4f156-7811-53f3-9172-8402127cf7b9')]
[2025-03-01 02:38:19,996] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "660e2a2a-a893-5902-825b-4f856be2cb23"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"5f1083fb-4487-5e20-9c56-073d01f560d7\"}, \"new_config\": {\"frequency\": null, \"band\": null}, \"flow\": [[\"0\", \"1\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "4dbdc2d8-cbde-5e48-a3c0-5161387a58c7"
}
}
[2025-03-01 02:38:20,089] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('d9f313b6-3424-540a-86bf-ed549f9674f5', 'c95752ca-692d-5996-a0bf-6b057e782e41'), ('daceaedc-be47-5012-b3b8-fb28781841c2', 'a1bf6395-4a6f-5040-8f22-6fe26b8f8678')]
[2025-03-01 02:38:20,098] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"flow_id\": 3, \"frequency\": null, \"band\": null}, \"flow\": [[\"d9f313b6-3424-540a-86bf-ed549f9674f5\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"a1bf6395-4a6f-5040-8f22-6fe26b8f8678\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:38:20,572] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('bfff28a1-4c1a-5e4d-b939-04afb9b85bf1', '0a6d1215-ae18-5a3b-b511-39a29c85597e'), ('b18058e8-f1a4-5a22-adb4-234fb4e00ac2', '27b3e289-7fea-5ce6-8080-60aeb6c0c0a2')]
[2025-03-01 02:38:20,582] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"flow_id\": 3, \"frequency\": null, \"band\": null}, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0a6d1215-ae18-5a3b-b511-39a29c85597e\"], [\"b18058e8-f1a4-5a22-adb4-234fb4e00ac2\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:38:21,076] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('2a307a8e-d326-5ea2-9437-b0320fb4c2a6', '0')]
[2025-03-01 02:38:21,087] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "47483eb2-dc16-5d95-915a-69ef836dd7e7"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"61eb9c9a-b02c-5477-a45c-a5d0f3c458ed\"}, \"new_config\": {\"frequency\": null, \"band\": null}, \"flow\": [[\"1\", \"0\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "87d74166-65e3-595e-b643-122b4fd0303f"
}
}
[2025-03-01 02:38:21,275] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:21,275] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:25,375] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:25,375] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:25,439] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:25,439] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:25,440] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c):set_status(SERVICESTATUS_ACTIVE)', 'optical_connection(d61c0e0c-0436-4efb-8092-68e12ca7f0d9):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c):delete']
[2025-03-01 02:38:25,465] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:25,465] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:25,465] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 0, e455280b-9147-5251-9fc9-2c977c4a007f, c95752ca-692d-5996-a0bf-6b057e782e41
[2025-03-01 02:38:25,466] INFO:service.service.service_handlers.oc.OCTools:connection is bidirectional
[2025-03-01 02:38:25,466] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 2, 5dc3f5d7-d3a9-5057-a9a0-8af943a5461c, decb9c95-7298-5ec8-a4b6-7f276f595106
[2025-03-01 02:38:25,466] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 6, ea2fbf55-86af-5658-b79f-80d477f5d361, bfff28a1-4c1a-5e4d-b939-04afb9b85bf1
[2025-03-01 02:38:25,466] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('0', 'c95752ca-692d-5996-a0bf-6b057e782e41'), ('daceaedc-be47-5012-b3b8-fb28781841c2', '0')]
[2025-03-01 02:38:25,476] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"ob_id\": 3, \"frequency\": null, \"band\": null}, \"flow\": [[\"0\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"0\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:38:28,517] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('decb9c95-7298-5ec8-a4b6-7f276f595106', '9cde3e12-2cb5-5a95-878c-b80528ce090e'), ('3d69f463-3c15-543e-b230-02bb5ac858dc', '4719df0d-102c-567c-ad6d-a8b2ced3598c')]
[2025-03-01 02:38:28,529] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "9c2cd5c3-6aeb-550a-be35-06d716c51a45"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON2\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"07251ce0-12f4-56f3-97b9-5902d3fd7129\"}, \"new_config\": {\"ob_id\": 3, \"frequency\": null, \"band\": null}, \"flow\": [[\"decb9c95-7298-5ec8-a4b6-7f276f595106\", \"9cde3e12-2cb5-5a95-878c-b80528ce090e\"], [\"3d69f463-3c15-543e-b230-02bb5ac858dc\", \"4719df0d-102c-567c-ad6d-a8b2ced3598c\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "5dc3f5d7-d3a9-5057-a9a0-8af943a5461c"
}
}
[2025-03-01 02:38:31,369] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('bfff28a1-4c1a-5e4d-b939-04afb9b85bf1', '0'), ('0', '27b3e289-7fea-5ce6-8080-60aeb6c0c0a2')]
[2025-03-01 02:38:31,380] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192381250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"4\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"ob_id\": 3, \"frequency\": null, \"band\": null}, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0\"], [\"0\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:38:38,880] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:38,880] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:38,947] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:38,947] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:38,947] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_ACTIVE)', 'optical_connection(6633d2e7-f991-4927-bda9-1379e2939549):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):delete']
[2025-03-01 02:38:38,974] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:38,975] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:38,975] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 0, e455280b-9147-5251-9fc9-2c977c4a007f, c95752ca-692d-5996-a0bf-6b057e782e41
[2025-03-01 02:38:38,975] INFO:service.service.service_handlers.oc.OCTools:connection is bidirectional
[2025-03-01 02:38:38,975] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 2, 5dc3f5d7-d3a9-5057-a9a0-8af943a5461c, decb9c95-7298-5ec8-a4b6-7f276f595106
[2025-03-01 02:38:38,975] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 6, ea2fbf55-86af-5658-b79f-80d477f5d361, bfff28a1-4c1a-5e4d-b939-04afb9b85bf1
[2025-03-01 02:38:38,975] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('0', 'c95752ca-692d-5996-a0bf-6b057e782e41'), ('daceaedc-be47-5012-b3b8-fb28781841c2', '0')]
[2025-03-01 02:38:38,985] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"ob_id\": 3, \"frequency\": null, \"band\": null}, \"flow\": [[\"0\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"0\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:38:41,679] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('decb9c95-7298-5ec8-a4b6-7f276f595106', '9cde3e12-2cb5-5a95-878c-b80528ce090e'), ('3d69f463-3c15-543e-b230-02bb5ac858dc', '4719df0d-102c-567c-ad6d-a8b2ced3598c')]
[2025-03-01 02:38:41,689] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "9c2cd5c3-6aeb-550a-be35-06d716c51a45"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON2\", \"type\": \"optical-roadm\", \"channels\": [], \"roadm_uuid\": {\"roadm_uuid\": \"07251ce0-12f4-56f3-97b9-5902d3fd7129\"}, \"new_config\": {\"ob_id\": 3, \"frequency\": null, \"band\": null}, \"flow\": [[\"decb9c95-7298-5ec8-a4b6-7f276f595106\", \"9cde3e12-2cb5-5a95-878c-b80528ce090e\"], [\"3d69f463-3c15-543e-b230-02bb5ac858dc\", \"4719df0d-102c-567c-ad6d-a8b2ced3598c\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "5dc3f5d7-d3a9-5057-a9a0-8af943a5461c"
}
}
[2025-03-01 02:38:44,340] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('bfff28a1-4c1a-5e4d-b939-04afb9b85bf1', '0'), ('0', '27b3e289-7fea-5ce6-8080-60aeb6c0c0a2')]
[2025-03-01 02:38:44,351] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"ob_id\": 3, \"frequency\": null, \"band\": null}, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0\"], [\"0\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:38:56,035] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_PLANNED)', 'connection(3e30331a-08c5-47a1-8041-f54b63bdb507):configure', 'connection(bfc557eb-e625-457a-973c-f8b1c035b088):configure', 'service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_ACTIVE)']
[2025-03-01 02:38:56,167] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:56,167] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:56,178] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 5, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"0\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"0\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:38:56,715] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "9c2cd5c3-6aeb-550a-be35-06d716c51a45"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON2\", \"type\": \"optical-roadm\", \"channels\": [], \"roadm_uuid\": {\"roadm_uuid\": \"07251ce0-12f4-56f3-97b9-5902d3fd7129\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 5, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"decb9c95-7298-5ec8-a4b6-7f276f595106\", \"9cde3e12-2cb5-5a95-878c-b80528ce090e\"], [\"3d69f463-3c15-543e-b230-02bb5ac858dc\", \"4719df0d-102c-567c-ad6d-a8b2ced3598c\"]]}"
device_id {
device_uuid {
uuid: "5dc3f5d7-d3a9-5057-a9a0-8af943a5461c"
}
}
[2025-03-01 02:38:57,056] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 5, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0\"], [\"0\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:38:57,582] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:57,582] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 02:38:57,592] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "660e2a2a-a893-5902-825b-4f856be2cb23"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"5f1083fb-4487-5e20-9c56-073d01f560d7\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 9, \"ob_id\": 5, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"0\", \"5eb4f156-7811-53f3-9172-8402127cf7b9\"]]}"
device_id {
device_uuid {
uuid: "4dbdc2d8-cbde-5e48-a3c0-5161387a58c7"
}
}
[2025-03-01 02:38:57,710] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 9, \"ob_id\": 5, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"d9f313b6-3424-540a-86bf-ed549f9674f5\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"a1bf6395-4a6f-5040-8f22-6fe26b8f8678\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 02:38:58,142] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 9, \"ob_id\": 5, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0a6d1215-ae18-5a3b-b511-39a29c85597e\"], [\"b18058e8-f1a4-5a22-adb4-234fb4e00ac2\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 02:38:58,593] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "47483eb2-dc16-5d95-915a-69ef836dd7e7"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"61eb9c9a-b02c-5477-a45c-a5d0f3c458ed\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 9, \"ob_id\": 5, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"2a307a8e-d326-5ea2-9437-b0320fb4c2a6\", \"0\"]]}"
device_id {
device_uuid {
uuid: "87d74166-65e3-595e-b643-122b4fd0303f"
}
}
[2025-03-01 09:15:01,163] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:01,163] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:01,231] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:01,231] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:01,262] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:01,263] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:01,264] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_ACTIVE)', 'optical_connection(3e30331a-08c5-47a1-8041-f54b63bdb507):deconfigure', 'optical_connection(bfc557eb-e625-457a-973c-f8b1c035b088):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43)_Config:delete', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):delete']
[2025-03-01 09:15:01,290] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:01,290] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:01,290] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:01,291] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:01,291] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 0, 4dbdc2d8-cbde-5e48-a3c0-5161387a58c7, 5eb4f156-7811-53f3-9172-8402127cf7b9
[2025-03-01 09:15:01,291] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 1, e455280b-9147-5251-9fc9-2c977c4a007f, d9f313b6-3424-540a-86bf-ed549f9674f5
[2025-03-01 09:15:01,291] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 2, e455280b-9147-5251-9fc9-2c977c4a007f, e455280b-9147-5251-9fc9-2c977c4a007f
[2025-03-01 09:15:01,291] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 3, e455280b-9147-5251-9fc9-2c977c4a007f, daceaedc-be47-5012-b3b8-fb28781841c2
[2025-03-01 09:15:01,291] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 4, e455280b-9147-5251-9fc9-2c977c4a007f, e455280b-9147-5251-9fc9-2c977c4a007f
[2025-03-01 09:15:01,292] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 5, ea2fbf55-86af-5658-b79f-80d477f5d361, bfff28a1-4c1a-5e4d-b939-04afb9b85bf1
[2025-03-01 09:15:01,292] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 6, ea2fbf55-86af-5658-b79f-80d477f5d361, ea2fbf55-86af-5658-b79f-80d477f5d361
[2025-03-01 09:15:01,292] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 7, ea2fbf55-86af-5658-b79f-80d477f5d361, b18058e8-f1a4-5a22-adb4-234fb4e00ac2
[2025-03-01 09:15:01,292] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 8, ea2fbf55-86af-5658-b79f-80d477f5d361, ea2fbf55-86af-5658-b79f-80d477f5d361
[2025-03-01 09:15:01,292] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 9, 87d74166-65e3-595e-b643-122b4fd0303f, 2a307a8e-d326-5ea2-9437-b0320fb4c2a6
[2025-03-01 09:15:01,292] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('0', '5eb4f156-7811-53f3-9172-8402127cf7b9')]
[2025-03-01 09:15:01,313] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "660e2a2a-a893-5902-825b-4f856be2cb23"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"5f1083fb-4487-5e20-9c56-073d01f560d7\"}, \"new_config\": {\"frequency\": null, \"band\": null}, \"flow\": [[\"0\", \"1\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "4dbdc2d8-cbde-5e48-a3c0-5161387a58c7"
}
}
[2025-03-01 09:15:01,449] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('d9f313b6-3424-540a-86bf-ed549f9674f5', 'c95752ca-692d-5996-a0bf-6b057e782e41'), ('daceaedc-be47-5012-b3b8-fb28781841c2', 'a1bf6395-4a6f-5040-8f22-6fe26b8f8678')]
[2025-03-01 09:15:01,460] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"flow_id\": 9, \"frequency\": null, \"band\": null}, \"flow\": [[\"d9f313b6-3424-540a-86bf-ed549f9674f5\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"a1bf6395-4a6f-5040-8f22-6fe26b8f8678\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 09:15:01,991] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('bfff28a1-4c1a-5e4d-b939-04afb9b85bf1', '0a6d1215-ae18-5a3b-b511-39a29c85597e'), ('b18058e8-f1a4-5a22-adb4-234fb4e00ac2', '27b3e289-7fea-5ce6-8080-60aeb6c0c0a2')]
[2025-03-01 09:15:02,012] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"flow_id\": 9, \"frequency\": null, \"band\": null}, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0a6d1215-ae18-5a3b-b511-39a29c85597e\"], [\"b18058e8-f1a4-5a22-adb4-234fb4e00ac2\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 09:15:02,460] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('2a307a8e-d326-5ea2-9437-b0320fb4c2a6', '0')]
[2025-03-01 09:15:02,473] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "47483eb2-dc16-5d95-915a-69ef836dd7e7"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"61eb9c9a-b02c-5477-a45c-a5d0f3c458ed\"}, \"new_config\": {\"frequency\": null, \"band\": null}, \"flow\": [[\"1\", \"0\"]], \"is_opticalband\": false}"
device_id {
device_uuid {
uuid: "87d74166-65e3-595e-b643-122b4fd0303f"
}
}
[2025-03-01 09:15:08,968] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:08,968] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:09,045] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:09,045] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:09,046] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_ACTIVE)', 'optical_connection(3e30331a-08c5-47a1-8041-f54b63bdb507):deconfigure', 'optical_service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):delete']
[2025-03-01 09:15:09,074] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:09,074] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:15:09,075] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 0, e455280b-9147-5251-9fc9-2c977c4a007f, c95752ca-692d-5996-a0bf-6b057e782e41
[2025-03-01 09:15:09,075] INFO:service.service.service_handlers.oc.OCTools:connection is bidirectional
[2025-03-01 09:15:09,075] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 2, 5dc3f5d7-d3a9-5057-a9a0-8af943a5461c, decb9c95-7298-5ec8-a4b6-7f276f595106
[2025-03-01 09:15:09,075] INFO:service.service.service_handlers.oc.OCTools:current OCTools step 6, ea2fbf55-86af-5658-b79f-80d477f5d361, bfff28a1-4c1a-5e4d-b939-04afb9b85bf1
[2025-03-01 09:15:09,075] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('0', 'c95752ca-692d-5996-a0bf-6b057e782e41'), ('daceaedc-be47-5012-b3b8-fb28781841c2', '0')]
[2025-03-01 09:15:09,087] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"ob_id\": 5, \"frequency\": null, \"band\": null}, \"flow\": [[\"0\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"0\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 09:15:12,187] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('decb9c95-7298-5ec8-a4b6-7f276f595106', '9cde3e12-2cb5-5a95-878c-b80528ce090e'), ('3d69f463-3c15-543e-b230-02bb5ac858dc', '4719df0d-102c-567c-ad6d-a8b2ced3598c')]
[2025-03-01 09:15:12,197] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "9c2cd5c3-6aeb-550a-be35-06d716c51a45"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON2\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"5\"}], \"roadm_uuid\": {\"roadm_uuid\": \"07251ce0-12f4-56f3-97b9-5902d3fd7129\"}, \"new_config\": {\"ob_id\": 5, \"frequency\": null, \"band\": null}, \"flow\": [[\"decb9c95-7298-5ec8-a4b6-7f276f595106\", \"9cde3e12-2cb5-5a95-878c-b80528ce090e\"], [\"3d69f463-3c15-543e-b230-02bb5ac858dc\", \"4719df0d-102c-567c-ad6d-a8b2ced3598c\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "5dc3f5d7-d3a9-5057-a9a0-8af943a5461c"
}
}
[2025-03-01 09:15:15,025] INFO:service.service.service_handlers.oc.OCServiceHandler:SSSSSSSSSSSS [('bfff28a1-4c1a-5e4d-b939-04afb9b85bf1', '0'), ('0', '27b3e289-7fea-5ce6-8080-60aeb6c0c0a2')]
[2025-03-01 09:15:15,036] INFO:service.service.task_scheduler.TaskExecutor:SSSSSSS->opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"ob_id\": 5, \"frequency\": null, \"band\": null}, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0\"], [\"0\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]], \"is_opticalband\": true}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 09:17:44,807] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_PLANNED)', 'connection(4d5a119a-1809-4c42-a794-b2ad1b5ec3ea):configure', 'connection(aa28c83b-fbab-4a62-9916-b957950b5bab):configure', 'service(43813baf-195e-5da6-af20-b3d0922e71a7/b2a39054-6b61-5460-a712-802d1e37dc43):set_status(SERVICESTATUS_ACTIVE)']
[2025-03-01 09:17:44,976] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:17:44,976] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:17:44,990] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 7, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"0\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"0\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 09:17:45,520] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "9c2cd5c3-6aeb-550a-be35-06d716c51a45"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON2\", \"type\": \"optical-roadm\", \"channels\": [], \"roadm_uuid\": {\"roadm_uuid\": \"07251ce0-12f4-56f3-97b9-5902d3fd7129\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 7, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"decb9c95-7298-5ec8-a4b6-7f276f595106\", \"9cde3e12-2cb5-5a95-878c-b80528ce090e\"], [\"3d69f463-3c15-543e-b230-02bb5ac858dc\", \"4719df0d-102c-567c-ad6d-a8b2ced3598c\"]]}"
device_id {
device_uuid {
uuid: "5dc3f5d7-d3a9-5057-a9a0-8af943a5461c"
}
}
[2025-03-01 09:17:45,774] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192206250, \"frequency\": 192106250, \"band\": 200000, \"ob_id\": 7, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0\"], [\"0\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 09:17:46,264] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:17:46,264] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "b2a39054-6b61-5460-a712-802d1e37dc43"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:17:46,274] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "660e2a2a-a893-5902-825b-4f856be2cb23"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"5f1083fb-4487-5e20-9c56-073d01f560d7\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 11, \"ob_id\": 7, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"0\", \"5eb4f156-7811-53f3-9172-8402127cf7b9\"]]}"
device_id {
device_uuid {
uuid: "4dbdc2d8-cbde-5e48-a3c0-5161387a58c7"
}
}
[2025-03-01 09:17:46,458] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 11, \"ob_id\": 7, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"d9f313b6-3424-540a-86bf-ed549f9674f5\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"a1bf6395-4a6f-5040-8f22-6fe26b8f8678\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 09:17:46,952] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 11, \"ob_id\": 7, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0a6d1215-ae18-5a3b-b511-39a29c85597e\"], [\"b18058e8-f1a4-5a22-adb4-234fb4e00ac2\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 09:17:47,491] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "47483eb2-dc16-5d95-915a-69ef836dd7e7"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.1\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"61eb9c9a-b02c-5477-a45c-a5d0f3c458ed\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192056250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 11, \"ob_id\": 7, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"2a307a8e-d326-5ea2-9437-b0320fb4c2a6\", \"0\"]]}"
device_id {
device_uuid {
uuid: "87d74166-65e3-595e-b643-122b4fd0303f"
}
}
[2025-03-01 09:21:39,531] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/929162cd-9ea7-5be2-801d-2029b3f32a91):set_status(SERVICESTATUS_PLANNED)', 'connection(bb3ad90b-b2c8-4276-b509-e43400328bff):configure', 'service(43813baf-195e-5da6-af20-b3d0922e71a7/929162cd-9ea7-5be2-801d-2029b3f32a91):set_status(SERVICESTATUS_ACTIVE)']
[2025-03-01 09:21:39,675] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "929162cd-9ea7-5be2-801d-2029b3f32a91"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:21:39,675] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "929162cd-9ea7-5be2-801d-2029b3f32a91"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:21:39,686] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "dafc79b2-5bc0-59da-8190-c593d07ddb4a"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T1.2\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"760c80c3-9ca9-557a-b0af-6fc578268017\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192156250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 13, \"ob_id\": 7, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"0\", \"7dc65d0e-af57-5d3c-9ba6-f6ec81a354c6\"]]}"
device_id {
device_uuid {
uuid: "27c2ed23-e74a-518f-820d-ae2c8ae23086"
}
}
[2025-03-01 09:21:39,785] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"11\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"12\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192156250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 13, \"ob_id\": 7, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"38ad3c6c-b437-589f-b384-4613b70e7939\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"f9eb897b-3060-5745-ac45-f0bee12f9669\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 09:21:40,243] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"11\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"12\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192156250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 13, \"ob_id\": 7, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"fad5757b-2a41-5502-8387-64c0d3575394\"], [\"7b9c3695-1128-576e-9a4a-a870ade20a36\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {
device_uuid {
uuid: "ea2fbf55-86af-5658-b79f-80d477f5d361"
}
}
[2025-03-01 09:21:40,658] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "0165915f-c477-5668-a72e-b478ed88a3c2"
}
config: "{\"channel_namespace\": \"http://openconfig.net/yang/terminal-device\", \"endpoints\": [{\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-1\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-2\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-3\"}}}, {\"endpoint_uuid\": {\"uuid\": {\"index\": \"channel-4\"}}}], \"device_name\": \"T2.2\", \"type\": \"optical-transponder\", \"channels\": [{\"name\": {\"index\": \"channel-3\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-1\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-4\"}, \"frequency\": 191600000, \"target-output-power\": \"100.0\", \"operational-mode\": 0, \"status\": \"DISABLED\"}, {\"name\": {\"index\": \"channel-2\"}, \"frequency\": 0, \"target-output-power\": null, \"operational-mode\": null, \"status\": \"DISABLED\"}], \"transceivers\": {\"transceiver\": []}, \"interfaces\": [{\"name\": \"eth0\", \"status\": \"true\", \"operation_status\": null, \"ifindex\": null, \"in_octets\": null, \"in_pkts\": null, \"in_unicast_pkts\": null, \"in_broadcast_pkts\": null, \"in_multicast_pkts\": null, \"in_discards\": null, \"in_errors\": null, \"out_discards\": null, \"out_errors\": null, \"out_octets\": null, \"out_pkts\": null, \"out_unicast_pkts\": null, \"out_broadcast_pkts\": null, \"out_multicast_pkts\": null, \"last_clear\": null}], \"trasponder_uuid\": {\"transponder_uuid\": \"767706ac-46f0-534a-8d8c-01551c8822bd\"}, \"new_config\": {\"target-output-power\": \"1.0\", \"frequency\": 192156250, \"operational-mode\": 8, \"band\": 100000, \"flow_id\": 13, \"ob_id\": 7, \"band_type\": \"C_BAND\", \"bidir\": 1, \"status\": \"ENABLED\"}, \"is_opticalband\": false, \"flow\": [[\"c4b8eb66-2fcf-5f66-802f-6cd9590fe70b\", \"0\"]]}"
device_id {
device_uuid {
uuid: "012c4e67-0024-5f30-b527-55ec6daf2639"
}
}
[2025-03-01 09:23:49,492] INFO:service.service.task_scheduler.TaskScheduler:[execute_all] ordered_task_keys=['service(43813baf-195e-5da6-af20-b3d0922e71a7/1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c):set_status(SERVICESTATUS_PLANNED)', 'connection(7bff31c1-1c66-4e1d-8531-119d55282a54):configure', 'connection(78d31318-be4f-43e5-afd5-a647670a002f):configure', 'service(43813baf-195e-5da6-af20-b3d0922e71a7/1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c):set_status(SERVICESTATUS_ACTIVE)']
[2025-03-01 09:23:49,644] INFO:service.service.service_handler_api.ServiceHandlerFactory:Selecting service handler for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:23:49,644] INFO:service.service.service_handler_api.ServiceHandlerFactory:ServiceHandler(OCServiceHandler) selected for service({"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "1fb0aac9-6edb-556b-8e6e-d7d6baa29d6c"}}) with filter_fields({'service_type': 6, 'device_driver': {11}})...
[2025-03-01 09:23:49,654] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "476af241-716a-597f-9540-a52cec157f21"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON1\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"11\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"12\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"14\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-9-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"13\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d86f631d-8a2b-5565-a496-42b1e8583650\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192381250, \"frequency\": 192193750, \"band\": 375000, \"ob_id\": 7, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"0\", \"c95752ca-692d-5996-a0bf-6b057e782e41\"], [\"daceaedc-be47-5012-b3b8-fb28781841c2\", \"0\"]]}"
device_id {
device_uuid {
uuid: "e455280b-9147-5251-9fc9-2c977c4a007f"
}
}
[2025-03-01 09:23:49,908] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "9c2cd5c3-6aeb-550a-be35-06d716c51a45"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON2\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-9-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-9-in\", \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"8\"}], \"roadm_uuid\": {\"roadm_uuid\": \"07251ce0-12f4-56f3-97b9-5902d3fd7129\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192381250, \"frequency\": 192193750, \"band\": 375000, \"ob_id\": 7, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"decb9c95-7298-5ec8-a4b6-7f276f595106\", \"9cde3e12-2cb5-5a95-878c-b80528ce090e\"], [\"3d69f463-3c15-543e-b230-02bb5ac858dc\", \"4719df0d-102c-567c-ad6d-a8b2ced3598c\"]]}"
device_id {
device_uuid {
uuid: "5dc3f5d7-d3a9-5057-a9a0-8af943a5461c"
}
}
[2025-03-01 09:23:50,192] INFO:service.service.task_scheduler.TaskExecutor:AAAAAAAAAAAAAAA:opticalconfig_id {
opticalconfig_uuid: "b75890ff-c8f9-5db2-8c31-0b329a08ab26"
}
config: "{\"channel_namespace\": null, \"endpoints\": [], \"device_name\": \"MGON3\", \"type\": \"optical-roadm\", \"channels\": [{\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": \"port-1-in\", \"dest_port\": null, \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"4\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"6\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"5\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"3\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"9\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-33-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"11\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006251, \"upper_frequency\": 192206250, \"type\": \"optical_band\", \"src_port\": null, \"dest_port\": \"port-1-out\", \"status\": \"\", \"optical_band_parent\": null, \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"12\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-35-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"7\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192206250, \"upper_frequency\": 192256250, \"type\": \"media_channel\", \"src_port\": \"port-35-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"3\", \"channel_index\": \"8\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-34-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"14\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192006250, \"upper_frequency\": 192106250, \"type\": \"media_channel\", \"src_port\": \"port-33-in\", \"dest_port\": \"port-1-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"5\", \"channel_index\": \"10\"}, {\"band_name\": \"C_BAND\", \"lower_frequency\": 192106250, \"upper_frequency\": 192206250, \"type\": \"media_channel\", \"src_port\": \"port-1-in\", \"dest_port\": \"port-34-out\", \"status\": \"ENABLED\", \"optical_band_parent\": \"7\", \"channel_index\": \"13\"}], \"roadm_uuid\": {\"roadm_uuid\": \"d6ea5d79-d90b-518e-b7c5-516931489726\"}, \"new_config\": {\"band_type\": \"C_BAND\", \"low-freq\": 192006251, \"up-freq\": 192381250, \"frequency\": 192193750, \"band\": 375000, \"ob_id\": 7, \"bidir\": 1}, \"is_opticalband\": true, \"flow\": [[\"bfff28a1-4c1a-5e4d-b939-04afb9b85bf1\", \"0\"], [\"0\", \"27b3e289-7fea-5ce6-8080-60aeb6c0c0a2\"]]}"
device_id {