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
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.6226043701171875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.430511474609375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:cryptomining_detector_output length: 10
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Inference performed in 0.001737356185913086 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.0994415283203125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.1444091796875e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.09996366500854492
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00017690658569335938
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1004338264465332 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.5299530029296875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.344650268554688e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.608268737792969e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.0531158447265625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.67572021484375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11433529853820801
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00017523765563964844
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11476755142211914 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.5299530029296875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.106231689453125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010013580322265625 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.198883056640625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.3909759521484375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1121072769165039
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001888275146484375
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1125791072845459 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.4836273193359375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.58306884765625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.918212890625e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.0067901611328125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.152557373046875e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.26565003395080566
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00020694732666015625
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.2661776542663574 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.67572021484375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.0728836059570312e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0002665519714355469 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.198883056640625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.775161743164062e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.13707947731018066
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00019216537475585938
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.13757872581481934 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.245208740234375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 9.5367431640625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010538101196289062 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.245208740234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.867813110351562e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1526491641998291
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0002849102020263672
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.15334534645080566 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 7.62939453125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.8835067749023438e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00017976760864257812 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 7.3909759521484375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.1682510375976562e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.15381813049316406
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00019478797912597656
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.18791770935058594 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 7.152557373046875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 2.0503997802734375e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00015997886657714844 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.9141387939453125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.2636184692382812e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.15748047828674316
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.000225067138671875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.15807414054870605 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.9604644775390625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.1444091796875e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00013494491577148438 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.198883056640625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.298324584960938e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.2109086513519287
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.029683828353881836
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.24097943305969238 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 8.344650268554688e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.5497207641601562e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.000164031982421875 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 7.62939453125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.2636184692382812e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.30292487144470215
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00020122528076171875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.3034346103668213 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.4836273193359375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.9550323486328125e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0001881122589111328 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process active requests: 1.779846429824829
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Number of active requests: 0
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to remove requests: 8.487701416015625e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connections: 1.781956672668457
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, metrics processed"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 2522.0}, {"feature": 3.0}, {"feature": 2522.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.337860107421875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 2744.0}, {"feature": 4.0}, {"feature": 2744.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1511.0}, {"feature": 3.0}, {"feature": 1511.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 2744.0}, {"feature": 4.0}, {"feature": 2744.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.337860107421875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1511.0}, {"feature": 3.0}, {"feature": 1511.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 2744.0}, {"feature": 4.0}, {"feature": 2744.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6689300537109375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1511.0}, {"feature": 3.0}, {"feature": 1511.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 2744.0}, {"feature": 5.0}, {"feature": 4092.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.337860107421875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1511.0}, {"feature": 3.0}, {"feature": 1511.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 2744.0}, {"feature": 6.0}, {"feature": 4314.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6689300537109375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 1511.0}, {"feature": 3.0}, {"feature": 1511.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 2744.0}, {"feature": 6.0}, {"feature": 4314.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.86102294921875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 1511.0}, {"feature": 3.0}, {"feature": 1511.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 2744.0}, {"feature": 7.0}, {"feature": 5662.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6689300537109375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 1511.0}, {"feature": 3.0}, {"feature": 1511.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 2744.0}, {"feature": 8.0}, {"feature": 5884.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.5762786865234375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:38835:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "38835", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 1511.0}, {"feature": 3.0}, {"feature": 1511.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 2744.0}, {"feature": 8.0}, {"feature": 5884.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:cryptomining_detector_output length: 10
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Inference performed in 0.0016222000122070312 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.0994415283203125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.059906005859375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11882162094116211
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00012826919555664062
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11918973922729492 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.291534423828125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.58306884765625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.000102996826171875 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.337860107421875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.152557373046875e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.19036245346069336
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0002684593200683594
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.19105815887451172 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.67572021484375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.1682510375976562e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0001385211944580078 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 1.9311904907226562e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.775161743164062e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.16298842430114746
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00018358230590820312
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.16348052024841309 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.9141387939453125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.4543533325195312e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0001888275146484375 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.76837158203125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 8.58306884765625e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1152043342590332
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00016307830810546875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11561822891235352 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 3.814697265625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.5020370483398438e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00017690658569335938 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.5762786865234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11494922637939453
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00016045570373535156
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11536026000976562 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.291534423828125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.344650268554688e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.584426879882812e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.5299530029296875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.4373016357421875e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.10881900787353516
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00014543533325195312
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1092071533203125 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.5299530029296875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.821487426757812e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00011205673217773438 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.5299530029296875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.14295411109924316
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001800060272216797
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.14342427253723145 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.5299530029296875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.344650268554688e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010013580322265625 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.0067901611328125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.152557373046875e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.12874364852905273
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0004744529724121094
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.12960481643676758 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 8.58306884765625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 6.937980651855469e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0003383159637451172 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.1021575927734375e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 4.553794860839844e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.13525748252868652
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001964569091796875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1358962059020996 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.76837158203125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 9.5367431640625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0001583099365234375 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.7220458984375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 8.106231689453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.16561436653137207
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001671314239501953
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.16603922843933105 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.76837158203125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.821487426757812e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.036064147949219e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process active requests: 1.3933436870574951
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Number of active requests: 0
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to remove requests: 7.605552673339844e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connections: 1.3951876163482666
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, metrics processed"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:22156:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22156", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438100.0}, "features": [{"feature": 6.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6689300537109375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:22156:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22156", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438100.0}, "features": [{"feature": 7.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.814697265625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:22156:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22156", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438100.0}, "features": [{"feature": 8.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.2172927856445312e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:22156:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22156", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438100.0}, "features": [{"feature": 8.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.5762786865234375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 202.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.6226043701171875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 202.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.430511474609375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 202.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6689300537109375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6689300537109375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:cryptomining_detector_output length: 10
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Inference performed in 0.0015869140625 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.337860107421875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.1682510375976562e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.10135984420776367
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00016069412231445312
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.10179734230041504 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.245208740234375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.58306884765625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010776519775390625 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.76837158203125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.62939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.12051224708557129
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00015974044799804688
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.12093973159790039 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.4836273193359375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 9.298324584960938e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00011110305786132812 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.0067901611328125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11045217514038086
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00015497207641601562
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11082792282104492 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.291534423828125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.58306884765625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010967254638671875 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.291534423828125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.4373016357421875e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11215949058532715
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001347064971923828
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11259222030639648 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 3.814697265625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.106231689453125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010991096496582031 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.814697265625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.67572021484375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.15079021453857422
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.000240325927734375
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1513988971710205 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.67572021484375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.430511474609375e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0002028942108154297 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 7.152557373046875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.1920928955078125e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.21831154823303223
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00020813941955566406
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.21891093254089355 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.9604644775390625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 2.0503997802734375e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0001690387725830078 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.9604644775390625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.059906005859375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11391901969909668
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00027823448181152344
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11454105377197266 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.245208740234375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.106231689453125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010037422180175781 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.245208740234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.62939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11698651313781738
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001678466796875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11741375923156738 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.5299530029296875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 7.867813110351562e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.655952453613281e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.245208740234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.20041131973266602
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00021767616271972656
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.20098423957824707 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.198883056640625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.0967254638671875e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00011658668518066406 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.4373016357421875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.5367431640625e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.20123600959777832
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0002067089080810547
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.20180821418762207 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.67572021484375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.1444091796875e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00013446807861328125 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process active requests: 1.4552063941955566
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Number of active requests: 0
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to remove requests: 0.0001628398895263672
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connections: 1.4571218490600586
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, metrics processed"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6689300537109375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1544.0}, {"feature": 3.0}, {"feature": 1544.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.0994415283203125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1544.0}, {"feature": 3.0}, {"feature": 1544.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 2522.0}, {"feature": 3.0}, {"feature": 2522.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.337860107421875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1544.0}, {"feature": 3.0}, {"feature": 1544.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 2744.0}, {"feature": 4.0}, {"feature": 2744.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.0994415283203125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1544.0}, {"feature": 3.0}, {"feature": 1544.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 2744.0}, {"feature": 4.0}, {"feature": 2744.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.6226043701171875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 2812.0}, {"feature": 4.0}, {"feature": 2812.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 2744.0}, {"feature": 4.0}, {"feature": 2744.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.0994415283203125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 2812.0}, {"feature": 4.0}, {"feature": 2812.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 2744.0}, {"feature": 4.0}, {"feature": 2744.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6450881958007812e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 2812.0}, {"feature": 4.0}, {"feature": 2812.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 2744.0}, {"feature": 5.0}, {"feature": 4092.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.0994415283203125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 2812.0}, {"feature": 4.0}, {"feature": 2812.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 2744.0}, {"feature": 6.0}, {"feature": 4314.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.384185791015625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 2812.0}, {"feature": 4.0}, {"feature": 2812.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 2744.0}, {"feature": 6.0}, {"feature": 4314.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:cryptomining_detector_output length: 10
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Inference performed in 0.0034279823303222656 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.4836273193359375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 2.6226043701171875e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.17864346504211426
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00021791458129882812
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.17931771278381348 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.4373016357421875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 2.1457672119140625e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00019431114196777344 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.4373016357421875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.0251998901367188e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.12603235244750977
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0002243518829345703
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1266317367553711 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.67572021484375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.4066696166992188e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00021910667419433594 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.9141387939453125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.1444091796875e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.17081308364868164
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00023698806762695312
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.17145419120788574 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.4373016357421875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.3589859008789062e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00018453598022460938 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.7220458984375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.0728836059570312e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.20576000213623047
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00020837783813476562
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.20633578300476074 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.67572021484375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.5735626220703125e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00014162063598632812 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.7220458984375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.0251998901367188e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.13464140892028809
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00015163421630859375
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.13505935668945312 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 3.814697265625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 7.867813110351562e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.655952453613281e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.5762786865234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 5.9604644775390625e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1790027618408203
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00020074844360351562
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.17950940132141113 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.7220458984375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.1682510375976562e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0001385211944580078 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.4836273193359375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.5367431640625e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.18697047233581543
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00016260147094726562
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.18738460540771484 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.291534423828125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.344650268554688e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 8.797645568847656e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.291534423828125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1758100986480713
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001819133758544922
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.17628884315490723 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.76837158203125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.821487426757812e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010228157043457031 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.5762786865234375e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.3909759521484375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1394195556640625
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00019502639770507812
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.13990473747253418 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.0067901611328125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.049041748046875e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00013303756713867188 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.5299530029296875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.059906005859375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.17255449295043945
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00020503997802734375
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.17327499389648438 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.7220458984375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.3589859008789062e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00019025802612304688 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process active requests: 1.679851770401001
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Number of active requests: 0
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to remove requests: 0.00010657310485839844
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connections: 1.683598279953003
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, metrics processed"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 2812.0}, {"feature": 4.0}, {"feature": 2812.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 2744.0}, {"feature": 7.0}, {"feature": 5662.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.384185791015625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 2812.0}, {"feature": 4.0}, {"feature": 2812.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 2744.0}, {"feature": 8.0}, {"feature": 5884.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.384185791015625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:1497:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1497", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 2812.0}, {"feature": 4.0}, {"feature": 2812.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 2744.0}, {"feature": 8.0}, {"feature": 5884.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 202.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.384185791015625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 202.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.71661376953125e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 202.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.6226043701171875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.86102294921875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.430511474609375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:cryptomining_detector_output length: 10
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Inference performed in 0.0027713775634765625 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.5299530029296875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.3828277587890625e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.14745378494262695
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00016307830810546875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1479480266571045 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.76837158203125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.106231689453125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.465217590332031e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.5299530029296875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.13948512077331543
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001957416534423828
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.13999128341674805 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.9604644775390625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.1205673217773438e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00014662742614746094 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.9604644775390625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.059906005859375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.17559027671813965
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001881122589111328
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.17607331275939941 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.0067901611328125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.344650268554688e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010442733764648438 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.0067901611328125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.152557373046875e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11115789413452148
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0002276897430419922
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11163902282714844 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.9604644775390625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.3589859008789062e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0002079010009765625 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.9604644775390625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.2159347534179688e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11362910270690918
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00028061866760253906
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11428689956665039 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 8.106231689453125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.52587890625e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00020766258239746094 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 7.62939453125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.2636184692382812e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.15589189529418945
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00022149085998535156
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.15651321411132812 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 1.1920928955078125e-05 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.1444091796875e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00015044212341308594 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.4373016357421875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 2.09808349609375e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.12772536277770996
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.000255584716796875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.12836217880249023 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.4836273193359375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.0251998901367188e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00027823448181152344 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.7220458984375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.62939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.10977482795715332
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001900196075439453
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11036038398742676 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.245208740234375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 9.059906005859375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00011181831359863281 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.9604644775390625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.3909759521484375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.20402193069458008
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0003750324249267578
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.20482230186462402 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 8.58306884765625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.621246337890625e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0002682209014892578 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.9604644775390625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 2.3365020751953125e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.180283784866333
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00021696090698242188
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.18084430694580078 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.198883056640625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.0013580322265625e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00011992454528808594 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process active requests: 1.4759795665740967
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Number of active requests: 0
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to remove requests: 9.655952453613281e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connections: 1.4790244102478027
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, metrics processed"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1548.0}, {"feature": 3.0}, {"feature": 1548.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.0994415283203125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1548.0}, {"feature": 3.0}, {"feature": 1548.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 2522.0}, {"feature": 3.0}, {"feature": 2522.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1548.0}, {"feature": 3.0}, {"feature": 1548.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 2744.0}, {"feature": 4.0}, {"feature": 2744.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1548.0}, {"feature": 3.0}, {"feature": 1548.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 2744.0}, {"feature": 4.0}, {"feature": 2744.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1548.0}, {"feature": 3.0}, {"feature": 1548.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 2744.0}, {"feature": 5.0}, {"feature": 4092.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.1457672119140625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1548.0}, {"feature": 3.0}, {"feature": 1548.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 2744.0}, {"feature": 6.0}, {"feature": 4314.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.1457672119140625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 1548.0}, {"feature": 3.0}, {"feature": 1548.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 2744.0}, {"feature": 6.0}, {"feature": 4314.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 1548.0}, {"feature": 3.0}, {"feature": 1548.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 2744.0}, {"feature": 7.0}, {"feature": 5662.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 1548.0}, {"feature": 3.0}, {"feature": 1548.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 2744.0}, {"feature": 8.0}, {"feature": 5884.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.1457672119140625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:52972:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52972", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 1548.0}, {"feature": 3.0}, {"feature": 1548.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 2744.0}, {"feature": 8.0}, {"feature": 5884.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:cryptomining_detector_output length: 10
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Inference performed in 0.0019271373748779297 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.337860107421875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.298324584960938e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.14023303985595703
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001671314239501953
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1406877040863037 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.5299530029296875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.0728836059570312e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0001518726348876953 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.245208740234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.298324584960938e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.19698238372802734
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0002262592315673828
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.19757318496704102 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.7220458984375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.3113021850585938e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00019621849060058594 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.7220458984375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.0013580322265625e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.14115071296691895
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00015544891357421875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.14154982566833496 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.245208740234375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 9.298324584960938e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00016832351684570312 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.5762786865234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1538069248199463
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00015783309936523438
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.15418338775634766 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 3.814697265625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.344650268554688e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00011444091796875 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.337860107421875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.67572021484375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11929130554199219
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00012421607971191406
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11967992782592773 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 3.814697265625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.106231689453125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 8.797645568847656e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.337860107421875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.67572021484375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.12163209915161133
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00012302398681640625
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1219789981842041 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 3.814697265625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 7.867813110351562e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.107589721679688e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.5762786865234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.18794727325439453
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0002262592315673828
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.18851327896118164 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.7220458984375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 2.2411346435546875e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00014257431030273438 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.198883056640625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.0251998901367188e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11358332633972168
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001423358917236328
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11399435997009277 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 3.337860107421875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 7.3909759521484375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.560585021972656e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.814697265625e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 5.9604644775390625e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1447312831878662
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00011754035949707031
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.14505600929260254 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.76837158203125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.344650268554688e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010418891906738281 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.337860107421875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.4373016357421875e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1138153076171875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00013828277587890625
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11420345306396484 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 3.814697265625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.58306884765625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.942054748535156e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process active requests: 1.4414262771606445
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Number of active requests: 0
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to remove requests: 7.2479248046875e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connections: 1.443591833114624
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, metrics processed"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:42050:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42050", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687437700.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 22.0}, {"feature": 22.0}, {"feature": 4593.0}, {"feature": 17.0}, {"feature": 25563.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 3.0994415283203125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:42050:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42050", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687437700.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 23.0}, {"feature": 23.0}, {"feature": 4593.0}, {"feature": 17.0}, {"feature": 25563.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 202.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.430511474609375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 202.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.384185791015625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 202.0}, {"feature": 1.0}, {"feature": 202.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6689300537109375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.1457672119140625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 1123.0}, {"feature": 1.0}, {"feature": 1123.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.384185791015625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.1457672119140625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 328.0}, {"feature": 2.0}, {"feature": 328.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:cryptomining_detector_output length: 10
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Inference performed in 0.0015087127685546875 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.76837158203125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.1682510375976562e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.09982419013977051
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00014019012451171875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.10033893585205078 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.4836273193359375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 9.059906005859375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00014257431030273438 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 3.5762786865234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1486186981201172
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00017333030700683594
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.14904260635375977 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.76837158203125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 9.298324584960938e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010037422180175781 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.291534423828125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11291193962097168
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00020051002502441406
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11340975761413574 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.0067901611328125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.7881393432617188e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.000110626220703125 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.245208740234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.867813110351562e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1285400390625
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001666545867919922
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1289815902709961 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.0067901611328125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.1920928955078125e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00019049644470214844 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.245208740234375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 8.58306884765625e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.18627476692199707
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0004038810729980469
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.18713831901550293 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.9141387939453125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.430511474609375e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0004506111145019531 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.4373016357421875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.049041748046875e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.161346435546875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0007774829864501953
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.16385579109191895 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 1.9788742065429688e-05 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.4543533325195312e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00030493736267089844 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 2.0742416381835938e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.4543533325195312e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.12233996391296387
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001785755157470703
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.12284994125366211 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.198883056640625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.821487426757812e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 8.797645568847656e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.7220458984375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.9141387939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1172330379486084
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001735687255859375
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11770319938659668 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.4836273193359375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.58306884765625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00010061264038085938 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.7220458984375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.152557373046875e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11225557327270508
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00017642974853515625
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11268258094787598 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.5299530029296875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.58306884765625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 9.894371032714844e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.5299530029296875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.152557373046875e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.14583134651184082
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.000213623046875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.14630937576293945 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 6.67572021484375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.52587890625e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00026416778564453125 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process active requests: 1.3476049900054932
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Number of active requests: 0
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to remove requests: 0.0001423358917236328
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connections: 1.3495087623596191
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, metrics processed"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1593.0}, {"feature": 3.0}, {"feature": 1593.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1593.0}, {"feature": 3.0}, {"feature": 1593.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 1174.0}, {"feature": 2.0}, {"feature": 1174.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.6226043701171875e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1593.0}, {"feature": 3.0}, {"feature": 1593.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 2522.0}, {"feature": 3.0}, {"feature": 2522.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.430511474609375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1593.0}, {"feature": 3.0}, {"feature": 1593.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 2744.0}, {"feature": 4.0}, {"feature": 2744.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.1457672119140625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1593.0}, {"feature": 3.0}, {"feature": 1593.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 2744.0}, {"feature": 5.0}, {"feature": 4092.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 1593.0}, {"feature": 3.0}, {"feature": 1593.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 2744.0}, {"feature": 6.0}, {"feature": 4314.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.1457672119140625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:26998:192.168.1.197:443", "ip_d": "192.168.1.197", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26998", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 1593.0}, {"feature": 3.0}, {"feature": 1593.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 2744.0}, {"feature": 6.0}, {"feature": 4314.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.1457672119140625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:32137:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "32137", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438100.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.384185791015625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:6307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6307", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:6307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6307", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:cryptomining_detector_output length: 10
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Inference performed in 0.0019130706787109375 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.5299530029296875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.71661376953125e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.10649275779724121
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00025773048400878906
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.10718297958374023 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 7.867813110351562e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.5497207641601562e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00024890899658203125 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 8.106231689453125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.1682510375976562e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1149299144744873
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001659393310546875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1154184341430664 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.76837158203125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 3.838539123535156e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00013756752014160156 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.0067901611328125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.152557373046875e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.20166659355163574
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001938343048095703
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.2021808624267578 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.9604644775390625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 2.193450927734375e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.03211498260498047 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 6.9141387939453125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 1.2159347534179688e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.2268671989440918
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0002455711364746094
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.22746491432189941 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.76837158203125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.0251998901367188e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00012040138244628906 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.5299530029296875e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 7.62939453125e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.1783454418182373
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00014328956604003906
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.17875075340270996 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.0531158447265625e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 8.106231689453125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 8.416175842285156e-05 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.291534423828125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 6.67572021484375e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11998915672302246
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001666545867919922
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.12043094635009766 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.5299530029296875e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.0728836059570312e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0001876354217529297 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 4.76837158203125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 9.298324584960938e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.18407869338989258
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00024890899658203125
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.1846625804901123 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 1.2636184692382812e-05 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.0013580322265625e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00012159347534179688 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 8.106231689453125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 8.344650268554688e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.13573956489562988
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00019979476928710938
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.13622665405273438 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 5.245208740234375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.0251998901367188e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00013947486877441406 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 5.4836273193359375e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 8.821487426757812e-06
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11628007888793945
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.00016450881958007812
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11674094200134277 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 7.3909759521484375e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 1.5974044799804688e-05
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.00022482872009277344 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to create KPIs: 7.62939453125e-06 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate accuracy: 3.4809112548828125e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to calculate F1 score: 0.11339783668518066
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to generate report: 0.0001659393310546875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze prediction accuracy: 0.11391854286193848 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze crypto detector output: 4.76837158203125e-06 seconds
INFO:root:No attack detected
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process no attack: 9.5367431640625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze attack mitigator output: 0.0001537799835205078 seconds
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to process active requests: 1.5727925300598145
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Number of active requests: 0
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to remove requests: 6.67572021484375e-05
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connections: 1.5749626159667969
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, metrics processed"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:6307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6307", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 5.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 2.1457672119140625e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:6307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6307", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 6.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6689300537109375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:48429:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "48429", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687437700.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1283.0}, {"feature": 8.0}, {"feature": 2362.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1881.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.9073486328125e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:48429:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "48429", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687437700.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 1283.0}, {"feature": 8.0}, {"feature": 2362.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1881.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.6689300537109375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:24158:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24158", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438000.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.430511474609375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"endpoint_id": {"device_id": {"device_uuid": {"uuid": "ed2388eb-5fb9-5888-a4f4-160267d3e19b"}}, "endpoint_uuid": {"uuid": "ff900d5d-2ac0-576c-9628-a2d016681f9d"}, "topology_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "topology_uuid": {"uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8"}}}, "flow_id": "10.100.200.3:42070:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42070", "protocol": "TCP", "service_id": {"context_id": {"context_uuid": {"uuid": "43813baf-195e-5da6-af20-b3d0922e71a7"}}, "service_uuid": {"uuid": "31f75cff-417a-4511-a6b4-b67df807dd01"}}, "time_end": 1687438200.0, "time_start": 1687438200.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 4593.0}, {"feature": 6.0}, {"feature": 10185.0}]}
INFO:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:Time to analyze connection request: 1.430511474609375e-06
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}