Newer
Older
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:32106:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "32106", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 13.0}, {"feature": 1385.0}, {"feature": 7.0}, {"feature": 1649.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 925.0}, {"feature": 6.0}, {"feature": 1420.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 2.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:32106:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "32106", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 13.0}, {"feature": 1385.0}, {"feature": 7.0}, {"feature": 1649.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 925.0}, {"feature": 6.0}, {"feature": 1420.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 2.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.006232261657714844
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 4593.0}, {"feature": 2.0}, {"feature": 5991.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 2.0}, {"feature": 199.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:32106:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "32106", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 14.0}, {"feature": 1385.0}, {"feature": 8.0}, {"feature": 2041.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 4593.0}, {"feature": 3.0}, {"feature": 7389.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:32106:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "32106", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 14.0}, {"feature": 1385.0}, {"feature": 8.0}, {"feature": 2041.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 925.0}, {"feature": 6.0}, {"feature": 1420.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42358:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42358", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 4593.0}, {"feature": 13.0}, {"feature": 20370.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42358:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42358", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 4593.0}, {"feature": 13.0}, {"feature": 20370.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:32106:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "32106", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 14.0}, {"feature": 1385.0}, {"feature": 8.0}, {"feature": 2041.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 4593.0}, {"feature": 2.0}, {"feature": 5991.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 2.0}, {"feature": 199.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:32106:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "32106", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 14.0}, {"feature": 1385.0}, {"feature": 8.0}, {"feature": 2041.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 4593.0}, {"feature": 3.0}, {"feature": 7389.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:32106:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "32106", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 14.0}, {"feature": 1385.0}, {"feature": 8.0}, {"feature": 2041.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 925.0}, {"feature": 6.0}, {"feature": 1420.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42358:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42358", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 4593.0}, {"feature": 13.0}, {"feature": 20370.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42358:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42358", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 4593.0}, {"feature": 13.0}, {"feature": 20370.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:32106:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "32106", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 14.0}, {"feature": 1385.0}, {"feature": 8.0}, {"feature": 2041.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004847288131713867
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1283.0}, {"feature": 7.0}, {"feature": 1778.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 4593.0}, {"feature": 4.0}, {"feature": 8787.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1283.0}, {"feature": 7.0}, {"feature": 1778.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 432.0}, {"feature": 2.0}, {"feature": 432.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 432.0}, {"feature": 2.0}, {"feature": 432.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1283.0}, {"feature": 7.0}, {"feature": 1778.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 4593.0}, {"feature": 4.0}, {"feature": 8787.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1283.0}, {"feature": 7.0}, {"feature": 1778.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 432.0}, {"feature": 2.0}, {"feature": 432.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 432.0}, {"feature": 2.0}, {"feature": 432.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004473447799682617
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 854.0}, {"feature": 3.0}, {"feature": 854.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 4593.0}, {"feature": 5.0}, {"feature": 10185.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42346:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42346", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 25563.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 854.0}, {"feature": 3.0}, {"feature": 854.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 4593.0}, {"feature": 5.0}, {"feature": 10185.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.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:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42346:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42346", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 25563.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.005057096481323242
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:42346:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42346", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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": 16.0}, {"feature": 25563.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 3.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 854.0}, {"feature": 3.0}, {"feature": 854.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 854.0}, {"feature": 4.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42364:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42364", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 4593.0}, {"feature": 14.0}, {"feature": 21369.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 854.0}, {"feature": 4.0}, {"feature": 1276.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 551.0}, {"feature": 3.0}, {"feature": 551.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42346:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42346", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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": 16.0}, {"feature": 25563.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:47752:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "47752", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 3.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 854.0}, {"feature": 3.0}, {"feature": 854.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 854.0}, {"feature": 4.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42364:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42364", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 4593.0}, {"feature": 14.0}, {"feature": 21369.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 854.0}, {"feature": 4.0}, {"feature": 1276.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 551.0}, {"feature": 3.0}, {"feature": 551.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004672050476074219
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 1460.0}, {"feature": 5.0}, {"feature": 1460.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 1460.0}, {"feature": 5.0}, {"feature": 1460.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 854.0}, {"feature": 4.0}, {"feature": 1276.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 1210.0}, {"feature": 3.0}, {"feature": 1210.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 854.0}, {"feature": 4.0}, {"feature": 1276.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 1210.0}, {"feature": 3.0}, {"feature": 1210.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:9949:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "9949", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 2.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 1460.0}, {"feature": 5.0}, {"feature": 1460.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 1460.0}, {"feature": 5.0}, {"feature": 1460.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 854.0}, {"feature": 4.0}, {"feature": 1276.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 1210.0}, {"feature": 3.0}, {"feature": 1210.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 854.0}, {"feature": 4.0}, {"feature": 1276.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 1210.0}, {"feature": 3.0}, {"feature": 1210.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:9949:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "9949", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 2.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004703998565673828
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 854.0}, {"feature": 4.0}, {"feature": 1276.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 1276.0}, {"feature": 5.0}, {"feature": 1698.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:9949:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "9949", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 1276.0}, {"feature": 5.0}, {"feature": 1698.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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": 11583.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 1276.0}, {"feature": 5.0}, {"feature": 1698.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 854.0}, {"feature": 4.0}, {"feature": 1276.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 1276.0}, {"feature": 5.0}, {"feature": 1698.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:9949:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "9949", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 1276.0}, {"feature": 5.0}, {"feature": 1698.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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": 11583.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 1276.0}, {"feature": 5.0}, {"feature": 1698.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004745006561279297
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:43374:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "43374", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:43374:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "43374", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 549.0}, {"feature": 4.0}, {"feature": 616.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 549.0}, {"feature": 4.0}, {"feature": 616.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 549.0}, {"feature": 4.0}, {"feature": 616.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 549.0}, {"feature": 4.0}, {"feature": 616.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1210.0}, {"feature": 4.0}, {"feature": 1645.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:43374:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "43374", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:43374:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "43374", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 549.0}, {"feature": 4.0}, {"feature": 616.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 549.0}, {"feature": 4.0}, {"feature": 616.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 549.0}, {"feature": 4.0}, {"feature": 616.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 549.0}, {"feature": 4.0}, {"feature": 616.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.0041239261627197266
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 899.0}, {"feature": 5.0}, {"feature": 966.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1645.0}, {"feature": 5.0}, {"feature": 2080.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 396.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42360:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42360", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 396.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 12.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1645.0}, {"feature": 5.0}, {"feature": 2080.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 899.0}, {"feature": 5.0}, {"feature": 966.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1645.0}, {"feature": 5.0}, {"feature": 2080.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 396.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42360:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42360", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 396.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 12.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1645.0}, {"feature": 5.0}, {"feature": 2080.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004996776580810547
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 992.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 992.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42362:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42362", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 4593.0}, {"feature": 14.0}, {"feature": 22767.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 12.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1645.0}, {"feature": 6.0}, {"feature": 2515.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 11.0}, {"feature": 977.0}, {"feature": 4.0}, {"feature": 977.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 12.0}, {"feature": 977.0}, {"feature": 4.0}, {"feature": 977.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1645.0}, {"feature": 6.0}, {"feature": 2515.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 992.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 992.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42362:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42362", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 4593.0}, {"feature": 14.0}, {"feature": 22767.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 12.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1645.0}, {"feature": 6.0}, {"feature": 2515.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 11.0}, {"feature": 977.0}, {"feature": 4.0}, {"feature": 977.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 12.0}, {"feature": 977.0}, {"feature": 4.0}, {"feature": 977.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1276.0}, {"feature": 6.0}, {"feature": 2120.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1645.0}, {"feature": 6.0}, {"feature": 2515.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.003836393356323242
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 4593.0}, {"feature": 2.0}, {"feature": 5991.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42360:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42360", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 4593.0}, {"feature": 2.0}, {"feature": 5991.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41307:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41307", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42360:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42360", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.00437617301940918
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:42360:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42360", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 20.0}, {"feature": 20.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 4593.0}, {"feature": 3.0}, {"feature": 7389.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1283.0}, {"feature": 7.0}, {"feature": 1778.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 12.0}, {"feature": 1283.0}, {"feature": 7.0}, {"feature": 1778.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:26270:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26270", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 1192.0}, {"feature": 10.0}, {"feature": 1739.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1306.0}, {"feature": 8.0}, {"feature": 1801.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 4593.0}, {"feature": 4.0}, {"feature": 8787.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:21776:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "21776", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1408.0}, {"feature": 7.0}, {"feature": 1431.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:26270:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26270", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 19.0}, {"feature": 1192.0}, {"feature": 10.0}, {"feature": 1739.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1306.0}, {"feature": 9.0}, {"feature": 1824.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42360:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42360", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 20.0}, {"feature": 20.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 4593.0}, {"feature": 3.0}, {"feature": 7389.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 1283.0}, {"feature": 7.0}, {"feature": 1778.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 12.0}, {"feature": 1283.0}, {"feature": 7.0}, {"feature": 1778.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26270:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26270", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 1192.0}, {"feature": 10.0}, {"feature": 1739.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1306.0}, {"feature": 8.0}, {"feature": 1801.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 4593.0}, {"feature": 4.0}, {"feature": 8787.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:21776:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "21776", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1408.0}, {"feature": 7.0}, {"feature": 1431.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26270:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26270", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 19.0}, {"feature": 1192.0}, {"feature": 10.0}, {"feature": 1739.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1306.0}, {"feature": 9.0}, {"feature": 1824.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.0041120052337646484
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:42348:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42348", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42348:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42348", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 8.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 618.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:26270:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26270", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 20.0}, {"feature": 1192.0}, {"feature": 10.0}, {"feature": 1739.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 9.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 618.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1306.0}, {"feature": 9.0}, {"feature": 1824.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.10:39384:37.187.95.110:443", "ip_d": "37.187.95.110", "ip_o": "10.100.200.10", "port_d": "443", "port_o": "39384", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 52.0}, {"feature": 51.0}, {"feature": 3719.0}, {"feature": 14.0}, {"feature": 3719.0}, {"feature": 40.0}, {"feature": 40.0}, {"feature": 13463.0}, {"feature": 37.0}, {"feature": 13463.0}]}, {"connection_metadata": {"flow_id": "10.100.200.10:39384:37.187.95.110:443", "ip_d": "37.187.95.110", "ip_o": "10.100.200.10", "port_d": "443", "port_o": "39384", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 53.0}, {"feature": 52.0}, {"feature": 3719.0}, {"feature": 14.0}, {"feature": 3719.0}, {"feature": 40.0}, {"feature": 40.0}, {"feature": 13463.0}, {"feature": 37.0}, {"feature": 13463.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:21776:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "21776", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1408.0}, {"feature": 7.0}, {"feature": 1431.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42348:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42348", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42348:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42348", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 8.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 618.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26270:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26270", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 20.0}, {"feature": 1192.0}, {"feature": 10.0}, {"feature": 1739.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 9.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 618.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1306.0}, {"feature": 9.0}, {"feature": 1824.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.10:39384:37.187.95.110:443", "ip_d": "37.187.95.110", "ip_o": "10.100.200.10", "port_d": "443", "port_o": "39384", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 52.0}, {"feature": 51.0}, {"feature": 3719.0}, {"feature": 14.0}, {"feature": 3719.0}, {"feature": 40.0}, {"feature": 40.0}, {"feature": 13463.0}, {"feature": 37.0}, {"feature": 13463.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.10:39384:37.187.95.110:443", "ip_d": "37.187.95.110", "ip_o": "10.100.200.10", "port_d": "443", "port_o": "39384", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 53.0}, {"feature": 52.0}, {"feature": 3719.0}, {"feature": 14.0}, {"feature": 3719.0}, {"feature": 40.0}, {"feature": 40.0}, {"feature": 13463.0}, {"feature": 37.0}, {"feature": 13463.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:21776:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "21776", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1408.0}, {"feature": 7.0}, {"feature": 1431.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004770517349243164
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 9.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 4593.0}, {"feature": 5.0}, {"feature": 10185.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.5:38696:94.23.247.226:80", "ip_d": "94.23.247.226", "ip_o": "10.100.200.5", "port_d": "80", "port_o": "38696", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 51.0}, {"feature": 50.0}, {"feature": 2962.0}, {"feature": 12.0}, {"feature": 2962.0}, {"feature": 42.0}, {"feature": 42.0}, {"feature": 12115.0}, {"feature": 38.0}, {"feature": 12115.0}]}, {"connection_metadata": {"flow_id": "10.100.200.5:38696:94.23.247.226:80", "ip_d": "94.23.247.226", "ip_o": "10.100.200.5", "port_d": "80", "port_o": "38696", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 52.0}, {"feature": 51.0}, {"feature": 2962.0}, {"feature": 12.0}, {"feature": 2962.0}, {"feature": 42.0}, {"feature": 42.0}, {"feature": 12115.0}, {"feature": 38.0}, {"feature": 12115.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 992.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 9.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 4593.0}, {"feature": 5.0}, {"feature": 10185.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.5:38696:94.23.247.226:80", "ip_d": "94.23.247.226", "ip_o": "10.100.200.5", "port_d": "80", "port_o": "38696", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 51.0}, {"feature": 50.0}, {"feature": 2962.0}, {"feature": 12.0}, {"feature": 2962.0}, {"feature": 42.0}, {"feature": 42.0}, {"feature": 12115.0}, {"feature": 38.0}, {"feature": 12115.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.5:38696:94.23.247.226:80", "ip_d": "94.23.247.226", "ip_o": "10.100.200.5", "port_d": "80", "port_o": "38696", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 52.0}, {"feature": 51.0}, {"feature": 2962.0}, {"feature": 12.0}, {"feature": 2962.0}, {"feature": 42.0}, {"feature": 42.0}, {"feature": 12115.0}, {"feature": 38.0}, {"feature": 12115.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 899.0}, {"feature": 4.0}, {"feature": 899.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 992.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.0050165653228759766
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 992.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1244.0}, {"feature": 5.0}, {"feature": 1244.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 463.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 9.0}, {"feature": 199.0}, {"feature": 5.0}, {"feature": 530.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1244.0}, {"feature": 5.0}, {"feature": 1244.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 993.0}, {"feature": 7.0}, {"feature": 1389.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 993.0}, {"feature": 7.0}, {"feature": 1389.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 199.0}, {"feature": 6.0}, {"feature": 597.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 596.0}, {"feature": 6.0}, {"feature": 992.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1244.0}, {"feature": 5.0}, {"feature": 1244.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 463.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 9.0}, {"feature": 199.0}, {"feature": 5.0}, {"feature": 530.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1244.0}, {"feature": 5.0}, {"feature": 1244.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 993.0}, {"feature": 7.0}, {"feature": 1389.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 993.0}, {"feature": 7.0}, {"feature": 1389.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 199.0}, {"feature": 6.0}, {"feature": 597.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004659891128540039
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 993.0}, {"feature": 8.0}, {"feature": 1786.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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": 11583.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 199.0}, {"feature": 6.0}, {"feature": 597.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 199.0}, {"feature": 6.0}, {"feature": 597.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 993.0}, {"feature": 8.0}, {"feature": 1786.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1645.0}, {"feature": 6.0}, {"feature": 2515.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 199.0}, {"feature": 6.0}, {"feature": 597.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 13.0}, {"feature": 1361.0}, {"feature": 5.0}, {"feature": 1361.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 993.0}, {"feature": 8.0}, {"feature": 1786.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1016.0}, {"feature": 6.0}, {"feature": 1743.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 993.0}, {"feature": 8.0}, {"feature": 1786.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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": 11583.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 199.0}, {"feature": 6.0}, {"feature": 597.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 199.0}, {"feature": 6.0}, {"feature": 597.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 993.0}, {"feature": 8.0}, {"feature": 1786.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1645.0}, {"feature": 6.0}, {"feature": 2515.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 199.0}, {"feature": 6.0}, {"feature": 597.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 13.0}, {"feature": 1361.0}, {"feature": 5.0}, {"feature": 1361.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 993.0}, {"feature": 8.0}, {"feature": 1786.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.0051250457763671875
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 10.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1645.0}, {"feature": 6.0}, {"feature": 2515.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 1483.0}, {"feature": 6.0}, {"feature": 1483.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 10.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 14.0}, {"feature": 1361.0}, {"feature": 6.0}, {"feature": 1745.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:51516:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51516", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 199.0}, {"feature": 7.0}, {"feature": 664.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 10.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1645.0}, {"feature": 6.0}, {"feature": 2515.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 1483.0}, {"feature": 6.0}, {"feature": 1483.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 10.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 14.0}, {"feature": 1361.0}, {"feature": 6.0}, {"feature": 1745.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:51516:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51516", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 199.0}, {"feature": 7.0}, {"feature": 664.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004981040954589844
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:42364:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42364", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 4593.0}, {"feature": 15.0}, {"feature": 22767.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 2183.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1881.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42354:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42354", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 4593.0}, {"feature": 17.0}, {"feature": 25563.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42364:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42364", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 4593.0}, {"feature": 15.0}, {"feature": 22767.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 2183.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1881.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42354:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42354", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 4593.0}, {"feature": 17.0}, {"feature": 25563.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.0050656795501708984
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 4593.0}, {"feature": 8.0}, {"feature": 14379.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:51516:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51516", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 2183.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 199.0}, {"feature": 7.0}, {"feature": 664.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 2183.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 4593.0}, {"feature": 9.0}, {"feature": 15777.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:51516:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51516", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 2183.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.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:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 4593.0}, {"feature": 8.0}, {"feature": 14379.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:51516:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51516", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 2183.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 199.0}, {"feature": 7.0}, {"feature": 664.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 2183.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 4593.0}, {"feature": 9.0}, {"feature": 15777.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:51516:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51516", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 2183.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.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:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.005620718002319336
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 15.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1881.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 4593.0}, {"feature": 10.0}, {"feature": 17175.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 15.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 1483.0}, {"feature": 6.0}, {"feature": 1483.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 15.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 15.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 17.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 2183.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:51516:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51516", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 15.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1881.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:58963:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "58963", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 551.0}, {"feature": 4.0}, {"feature": 903.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 4593.0}, {"feature": 10.0}, {"feature": 17175.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 15.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 1483.0}, {"feature": 6.0}, {"feature": 1483.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 15.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 15.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1162.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13799:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13799", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 17.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 2183.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1016.0}, {"feature": 5.0}, {"feature": 1886.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:51516:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51516", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.005095958709716797
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:51497:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51497", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:51497:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51497", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 2.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 2075.0}, {"feature": 7.0}, {"feature": 2945.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 4593.0}, {"feature": 11.0}, {"feature": 18573.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:51497:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51497", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:51497:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51497", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 2.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:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 2075.0}, {"feature": 7.0}, {"feature": 2945.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 4593.0}, {"feature": 11.0}, {"feature": 18573.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.008684396743774414
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 2075.0}, {"feature": 7.0}, {"feature": 2945.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42358:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42358", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 4593.0}, {"feature": 14.0}, {"feature": 21768.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 2075.0}, {"feature": 8.0}, {"feature": 3375.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 16.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 2075.0}, {"feature": 8.0}, {"feature": 3375.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42342:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42342", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42354:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42354", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 4593.0}, {"feature": 17.0}, {"feature": 25563.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42354:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42354", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 2075.0}, {"feature": 7.0}, {"feature": 2945.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42358:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42358", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 4593.0}, {"feature": 14.0}, {"feature": 21768.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 2075.0}, {"feature": 8.0}, {"feature": 3375.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 16.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 2075.0}, {"feature": 8.0}, {"feature": 3375.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42342:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42342", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42354:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42354", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 4593.0}, {"feature": 17.0}, {"feature": 25563.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42354:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42354", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.007959127426147461
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 16.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 2098.0}, {"feature": 9.0}, {"feature": 3398.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 17.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 2098.0}, {"feature": 9.0}, {"feature": 3398.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 17.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 2098.0}, {"feature": 10.0}, {"feature": 3421.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52566:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52566", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52566:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52566", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 18.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 2098.0}, {"feature": 10.0}, {"feature": 3421.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 7.0}, {"feature": 2173.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52566:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52566", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:65197:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "65197", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 3.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}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 16.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 2098.0}, {"feature": 9.0}, {"feature": 3398.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:44634:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "44634", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1483.0}, {"feature": 7.0}, {"feature": 1506.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 17.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 2098.0}, {"feature": 9.0}, {"feature": 3398.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 17.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 2098.0}, {"feature": 10.0}, {"feature": 3421.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52566:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52566", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52566:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52566", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 18.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 2098.0}, {"feature": 10.0}, {"feature": 3421.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 7.0}, {"feature": 2173.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52566:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52566", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:65197:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "65197", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 3.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.007199525833129883
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 7.0}, {"feature": 2173.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 18.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 2098.0}, {"feature": 10.0}, {"feature": 3421.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 19.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 2098.0}, {"feature": 10.0}, {"feature": 3421.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 4593.0}, {"feature": 12.0}, {"feature": 19971.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 2603.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:65197:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "65197", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 17.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 2603.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 7.0}, {"feature": 2173.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 18.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 2098.0}, {"feature": 10.0}, {"feature": 3421.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:13647:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "13647", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 19.0}, {"feature": 1693.0}, {"feature": 7.0}, {"feature": 2537.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 2098.0}, {"feature": 10.0}, {"feature": 3421.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 4593.0}, {"feature": 12.0}, {"feature": 19971.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 2603.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:65197:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "65197", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 17.0}, {"feature": 1244.0}, {"feature": 6.0}, {"feature": 1589.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 2603.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.0048999786376953125
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1927.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1927.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:28490:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "28490", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1927.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1927.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1927.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 3.0}, {"feature": 100.0}, {"feature": 1.0}, {"feature": 100.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:28490:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "28490", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1927.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1927.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:28490:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "28490", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1927.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1927.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:16565:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "16565", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1927.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 3.0}, {"feature": 100.0}, {"feature": 1.0}, {"feature": 100.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:28490:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "28490", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004885435104370117
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 588.0}, {"feature": 8.0}, {"feature": 1053.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 100.0}, {"feature": 2.0}, {"feature": 200.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 4593.0}, {"feature": 8.0}, {"feature": 14379.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 15.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 16.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 12.0}, {"feature": 588.0}, {"feature": 8.0}, {"feature": 1053.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 100.0}, {"feature": 2.0}, {"feature": 200.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 4593.0}, {"feature": 7.0}, {"feature": 12981.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 4593.0}, {"feature": 8.0}, {"feature": 14379.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 15.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 16.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.005109310150146484
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 588.0}, {"feature": 9.0}, {"feature": 1442.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 4593.0}, {"feature": 9.0}, {"feature": 15777.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 16.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 100.0}, {"feature": 2.0}, {"feature": 200.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 432.0}, {"feature": 2.0}, {"feature": 432.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:28490:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "28490", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 13.0}, {"feature": 588.0}, {"feature": 9.0}, {"feature": 1442.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 4593.0}, {"feature": 9.0}, {"feature": 15777.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 16.0}, {"feature": 1361.0}, {"feature": 7.0}, {"feature": 2129.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 4.0}, {"feature": 100.0}, {"feature": 2.0}, {"feature": 200.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 432.0}, {"feature": 2.0}, {"feature": 432.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:28490:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "28490", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004626750946044922
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 4593.0}, {"feature": 10.0}, {"feature": 17175.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1615.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 12.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 432.0}, {"feature": 2.0}, {"feature": 432.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 10.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1615.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 9.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 4593.0}, {"feature": 10.0}, {"feature": 17175.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 10.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1615.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 12.0}, {"feature": 899.0}, {"feature": 6.0}, {"feature": 1316.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 432.0}, {"feature": 2.0}, {"feature": 432.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 10.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1615.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 9.0}, {"feature": 596.0}, {"feature": 3.0}, {"feature": 596.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.005079984664916992
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 16.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:21776:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "21776", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1408.0}, {"feature": 7.0}, {"feature": 1431.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42356:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42356", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 20.0}, {"feature": 20.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 11.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42356:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42356", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 199.0}, {"feature": 2.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 2603.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 2603.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 16.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:21776:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "21776", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1408.0}, {"feature": 7.0}, {"feature": 1431.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42356:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42356", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 20.0}, {"feature": 20.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 11.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42356:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42356", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 199.0}, {"feature": 2.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 2603.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 2603.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.0045740604400634766
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 4593.0}, {"feature": 11.0}, {"feature": 18573.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1638.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 51.0}, {"feature": 50.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 40.0}, {"feature": 40.0}, {"feature": 14523.0}, {"feature": 37.0}, {"feature": 14523.0}]}, {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 51.0}, {"feature": 50.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 41.0}, {"feature": 41.0}, {"feature": 14523.0}, {"feature": 37.0}, {"feature": 14523.0}]}, {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 51.0}, {"feature": 50.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 42.0}, {"feature": 42.0}, {"feature": 14972.0}, {"feature": 38.0}, {"feature": 14972.0}]}, {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 52.0}, {"feature": 51.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 42.0}, {"feature": 42.0}, {"feature": 14972.0}, {"feature": 38.0}, {"feature": 14972.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 17.0}, {"feature": 1384.0}, {"feature": 8.0}, {"feature": 2152.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 4593.0}, {"feature": 11.0}, {"feature": 18573.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 11.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1638.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 51.0}, {"feature": 50.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 40.0}, {"feature": 40.0}, {"feature": 14523.0}, {"feature": 37.0}, {"feature": 14523.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 51.0}, {"feature": 50.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 41.0}, {"feature": 41.0}, {"feature": 14523.0}, {"feature": 37.0}, {"feature": 14523.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 51.0}, {"feature": 50.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 42.0}, {"feature": 42.0}, {"feature": 14972.0}, {"feature": 38.0}, {"feature": 14972.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 52.0}, {"feature": 51.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 42.0}, {"feature": 42.0}, {"feature": 14972.0}, {"feature": 38.0}, {"feature": 14972.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 17.0}, {"feature": 1384.0}, {"feature": 8.0}, {"feature": 2152.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 581.0}, {"feature": 2.0}, {"feature": 581.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004397153854370117
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 52.0}, {"feature": 51.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 43.0}, {"feature": 43.0}, {"feature": 15073.0}, {"feature": 39.0}, {"feature": 15073.0}]}, {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 53.0}, {"feature": 52.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 43.0}, {"feature": 43.0}, {"feature": 15073.0}, {"feature": 39.0}, {"feature": 15073.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 708.0}, {"feature": 1.0}, {"feature": 708.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 17.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:21776:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "21776", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1408.0}, {"feature": 7.0}, {"feature": 1431.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 4593.0}, {"feature": 13.0}, {"feature": 21369.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 18.0}, {"feature": 1384.0}, {"feature": 9.0}, {"feature": 2175.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 52.0}, {"feature": 51.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 43.0}, {"feature": 43.0}, {"feature": 15073.0}, {"feature": 39.0}, {"feature": 15073.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.15:35054:94.23.23.52:443", "ip_d": "94.23.23.52", "ip_o": "10.100.200.15", "port_d": "443", "port_o": "35054", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 53.0}, {"feature": 52.0}, {"feature": 3193.0}, {"feature": 12.0}, {"feature": 3193.0}, {"feature": 43.0}, {"feature": 43.0}, {"feature": 15073.0}, {"feature": 39.0}, {"feature": 15073.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 708.0}, {"feature": 1.0}, {"feature": 708.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52124:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52124", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 17.0}, {"feature": 1306.0}, {"feature": 10.0}, {"feature": 1847.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1469.0}, {"feature": 5.0}, {"feature": 1469.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:21776:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "21776", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1408.0}, {"feature": 7.0}, {"feature": 1431.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 1469.0}, {"feature": 6.0}, {"feature": 1904.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42366:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42366", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 4593.0}, {"feature": 13.0}, {"feature": 21369.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 18.0}, {"feature": 1384.0}, {"feature": 9.0}, {"feature": 2175.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.0055561065673828125
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 795.0}, {"feature": 3.0}, {"feature": 795.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 11.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 1244.0}, {"feature": 5.0}, {"feature": 1244.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 708.0}, {"feature": 2.0}, {"feature": 1416.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 12.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 1244.0}, {"feature": 5.0}, {"feature": 1244.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42344:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42344", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 22.0}, {"feature": 22.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 25563.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:55956:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "55956", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 795.0}, {"feature": 3.0}, {"feature": 795.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 11.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 1244.0}, {"feature": 5.0}, {"feature": 1244.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 5.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 708.0}, {"feature": 2.0}, {"feature": 1416.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 12.0}, {"feature": 903.0}, {"feature": 5.0}, {"feature": 970.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22829:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22829", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 11.0}, {"feature": 1244.0}, {"feature": 5.0}, {"feature": 1244.0}, {"feature": 11.0}, {"feature": 11.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42344:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42344", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 22.0}, {"feature": 22.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 25563.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.005017995834350586
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 18.0}, {"feature": 1384.0}, {"feature": 9.0}, {"feature": 2175.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 12.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1638.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 4593.0}, {"feature": 12.0}, {"feature": 19971.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 708.0}, {"feature": 2.0}, {"feature": 1416.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 795.0}, {"feature": 4.0}, {"feature": 1158.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 18.0}, {"feature": 1384.0}, {"feature": 9.0}, {"feature": 2175.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 18.0}, {"feature": 1384.0}, {"feature": 9.0}, {"feature": 2175.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 13.0}, {"feature": 12.0}, {"feature": 849.0}, {"feature": 4.0}, {"feature": 849.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1638.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 15.0}, {"feature": 15.0}, {"feature": 4593.0}, {"feature": 12.0}, {"feature": 19971.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 6.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 708.0}, {"feature": 2.0}, {"feature": 1416.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 795.0}, {"feature": 4.0}, {"feature": 1158.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 14.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 15.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 16.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:41622:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "41622", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 18.0}, {"feature": 1384.0}, {"feature": 9.0}, {"feature": 2175.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 5.0}, {"feature": 1592.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.005542755126953125
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 708.0}, {"feature": 2.0}, {"feature": 1416.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42362:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42362", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 4593.0}, {"feature": 15.0}, {"feature": 24165.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 795.0}, {"feature": 4.0}, {"feature": 1158.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 795.0}, {"feature": 5.0}, {"feature": 1521.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 795.0}, {"feature": 5.0}, {"feature": 1521.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 17.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 6.0}, {"feature": 2316.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1469.0}, {"feature": 9.0}, {"feature": 2626.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 7.0}, {"feature": 100.0}, {"feature": 3.0}, {"feature": 300.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 708.0}, {"feature": 2.0}, {"feature": 1416.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42362:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42362", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 4593.0}, {"feature": 15.0}, {"feature": 24165.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.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:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 9.0}, {"feature": 8.0}, {"feature": 795.0}, {"feature": 4.0}, {"feature": 1158.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 795.0}, {"feature": 5.0}, {"feature": 1521.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 795.0}, {"feature": 5.0}, {"feature": 1521.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 17.0}, {"feature": 588.0}, {"feature": 10.0}, {"feature": 1831.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 1446.0}, {"feature": 6.0}, {"feature": 2316.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1469.0}, {"feature": 9.0}, {"feature": 2626.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.008234500885009766
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:14757:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "14757", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:14757:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "14757", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 4593.0}, {"feature": 2.0}, {"feature": 5991.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:14757:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "14757", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:14757:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "14757", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 4593.0}, {"feature": 1.0}, {"feature": 4593.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 4593.0}, {"feature": 2.0}, {"feature": 5991.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.0051157474517822266
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 19.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1469.0}, {"feature": 9.0}, {"feature": 2626.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 19.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 20.0}, {"feature": 20.0}, {"feature": 1469.0}, {"feature": 9.0}, {"feature": 2626.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42362:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42362", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 4593.0}, {"feature": 15.0}, {"feature": 24165.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42362:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42362", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 4593.0}, {"feature": 15.0}, {"feature": 24165.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:14757:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "14757", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1446.0}, {"feature": 7.0}, {"feature": 2746.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 4593.0}, {"feature": 3.0}, {"feature": 7389.0}]}, {"connection_metadata": {"flow_id": "10.100.200.10:39384:37.187.95.110:443", "ip_d": "37.187.95.110", "ip_o": "10.100.200.10", "port_d": "443", "port_o": "39384", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 54.0}, {"feature": 53.0}, {"feature": 3982.0}, {"feature": 15.0}, {"feature": 3982.0}, {"feature": 40.0}, {"feature": 40.0}, {"feature": 13463.0}, {"feature": 37.0}, {"feature": 13463.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 20.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 20.0}, {"feature": 20.0}, {"feature": 1469.0}, {"feature": 9.0}, {"feature": 2626.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 20.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 1469.0}, {"feature": 9.0}, {"feature": 2626.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 19.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1469.0}, {"feature": 9.0}, {"feature": 2626.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 19.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 20.0}, {"feature": 20.0}, {"feature": 1469.0}, {"feature": 9.0}, {"feature": 2626.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42362:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42362", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 4593.0}, {"feature": 15.0}, {"feature": 24165.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42362:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42362", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 4593.0}, {"feature": 15.0}, {"feature": 24165.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:14757:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "14757", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 1446.0}, {"feature": 7.0}, {"feature": 2746.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 4593.0}, {"feature": 3.0}, {"feature": 7389.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.10:39384:37.187.95.110:443", "ip_d": "37.187.95.110", "ip_o": "10.100.200.10", "port_d": "443", "port_o": "39384", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 54.0}, {"feature": 53.0}, {"feature": 3982.0}, {"feature": 15.0}, {"feature": 3982.0}, {"feature": 40.0}, {"feature": 40.0}, {"feature": 13463.0}, {"feature": 37.0}, {"feature": 13463.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 20.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 20.0}, {"feature": 20.0}, {"feature": 1469.0}, {"feature": 9.0}, {"feature": 2626.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45223:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45223", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 22.0}, {"feature": 20.0}, {"feature": 1267.0}, {"feature": 7.0}, {"feature": 1612.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 1469.0}, {"feature": 9.0}, {"feature": 2626.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.00613856315612793
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.10:39384:37.187.95.110:443", "ip_d": "37.187.95.110", "ip_o": "10.100.200.10", "port_d": "443", "port_o": "39384", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 54.0}, {"feature": 53.0}, {"feature": 3982.0}, {"feature": 15.0}, {"feature": 3982.0}, {"feature": 41.0}, {"feature": 41.0}, {"feature": 13556.0}, {"feature": 38.0}, {"feature": 13556.0}]}, {"connection_metadata": {"flow_id": "10.100.200.10:39384:37.187.95.110:443", "ip_d": "37.187.95.110", "ip_o": "10.100.200.10", "port_d": "443", "port_o": "39384", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 55.0}, {"feature": 54.0}, {"feature": 3982.0}, {"feature": 15.0}, {"feature": 3982.0}, {"feature": 41.0}, {"feature": 41.0}, {"feature": 13556.0}, {"feature": 38.0}, {"feature": 13556.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 795.0}, {"feature": 5.0}, {"feature": 1521.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 3.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 4593.0}, {"feature": 4.0}, {"feature": 8787.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 13.0}, {"feature": 1250.0}, {"feature": 6.0}, {"feature": 1317.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 199.0}, {"feature": 2.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.10:39384:37.187.95.110:443", "ip_d": "37.187.95.110", "ip_o": "10.100.200.10", "port_d": "443", "port_o": "39384", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 54.0}, {"feature": 53.0}, {"feature": 3982.0}, {"feature": 15.0}, {"feature": 3982.0}, {"feature": 41.0}, {"feature": 41.0}, {"feature": 13556.0}, {"feature": 38.0}, {"feature": 13556.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.10:39384:37.187.95.110:443", "ip_d": "37.187.95.110", "ip_o": "10.100.200.10", "port_d": "443", "port_o": "39384", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 55.0}, {"feature": 54.0}, {"feature": 3982.0}, {"feature": 15.0}, {"feature": 3982.0}, {"feature": 41.0}, {"feature": 41.0}, {"feature": 13556.0}, {"feature": 38.0}, {"feature": 13556.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:33513:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "33513", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 9.0}, {"feature": 795.0}, {"feature": 5.0}, {"feature": 1521.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 775.0}, {"feature": 2.0}, {"feature": 775.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:26795:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "26795", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 3.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}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 15.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 4593.0}, {"feature": 4.0}, {"feature": 8787.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 13.0}, {"feature": 1250.0}, {"feature": 6.0}, {"feature": 1317.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 199.0}, {"feature": 2.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.005424022674560547
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 16.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52566:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52566", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 13.0}, {"feature": 1250.0}, {"feature": 6.0}, {"feature": 1317.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 14.0}, {"feature": 1250.0}, {"feature": 7.0}, {"feature": 1664.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:52566:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52566", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 4593.0}, {"feature": 5.0}, {"feature": 10185.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 16.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52566:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52566", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 16.0}, {"feature": 13.0}, {"feature": 1250.0}, {"feature": 6.0}, {"feature": 1317.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 14.0}, {"feature": 1250.0}, {"feature": 7.0}, {"feature": 1664.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.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:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:52566:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "52566", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 4593.0}, {"feature": 5.0}, {"feature": 10185.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.0054662227630615234
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.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}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 977.0}, {"feature": 11.0}, {"feature": 2220.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 17.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 977.0}, {"feature": 11.0}, {"feature": 2220.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 18.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 14.0}, {"feature": 1250.0}, {"feature": 7.0}, {"feature": 1664.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:24388:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24388", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 4593.0}, {"feature": 13.0}, {"feature": 21369.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 333.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.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:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 977.0}, {"feature": 11.0}, {"feature": 2220.0}, {"feature": 17.0}, {"feature": 17.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 18.0}, {"feature": 17.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:2378:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "2378", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 18.0}, {"feature": 977.0}, {"feature": 11.0}, {"feature": 2220.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 581.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 6.0}, {"feature": 5.0}, {"feature": 199.0}, {"feature": 3.0}, {"feature": 266.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 19.0}, {"feature": 18.0}, {"feature": 1460.0}, {"feature": 7.0}, {"feature": 2014.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:36724:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "36724", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 17.0}, {"feature": 14.0}, {"feature": 1250.0}, {"feature": 7.0}, {"feature": 1664.0}, {"feature": 14.0}, {"feature": 14.0}, {"feature": 1446.0}, {"feature": 4.0}, {"feature": 1446.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:24388:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24388", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42368:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42368", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 16.0}, {"feature": 16.0}, {"feature": 4593.0}, {"feature": 13.0}, {"feature": 21369.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 333.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004641532897949219
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:24388:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24388", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 333.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:24388:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24388", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42350:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42350", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 25563.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42350:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42350", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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": 16.0}, {"feature": 25563.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 333.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 432.0}, {"feature": 4.0}, {"feature": 632.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 708.0}, {"feature": 2.0}, {"feature": 1416.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 432.0}, {"feature": 4.0}, {"feature": 632.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 708.0}, {"feature": 2.0}, {"feature": 1416.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:24388:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24388", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 100.0}, {"feature": 1.0}, {"feature": 100.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:24388:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24388", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 100.0}, {"feature": 1.0}, {"feature": 100.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:24388:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24388", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 333.0}, {"feature": 5.0}, {"feature": 5.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:24388:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24388", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 2.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42350:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42350", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 8.0}, {"feature": 7.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 21.0}, {"feature": 21.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 25563.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42350:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42350", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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": 16.0}, {"feature": 25563.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:22199:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "22199", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 7.0}, {"feature": 6.0}, {"feature": 199.0}, {"feature": 4.0}, {"feature": 333.0}, {"feature": 6.0}, {"feature": 6.0}, {"feature": 146.0}, {"feature": 1.0}, {"feature": 146.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 432.0}, {"feature": 4.0}, {"feature": 632.0}, {"feature": 7.0}, {"feature": 7.0}, {"feature": 708.0}, {"feature": 2.0}, {"feature": 1416.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:1701:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "1701", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 10.0}, {"feature": 8.0}, {"feature": 432.0}, {"feature": 4.0}, {"feature": 632.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 708.0}, {"feature": 2.0}, {"feature": 1416.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:24388:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24388", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 100.0}, {"feature": 1.0}, {"feature": 100.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:24388:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "24388", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 100.0}, {"feature": 1.0}, {"feature": 100.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.005974292755126953
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:28490:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "28490", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:28490:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "28490", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 993.0}, {"feature": 4.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1638.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1638.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 19.0}, {"feature": 1483.0}, {"feature": 8.0}, {"feature": 2037.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 993.0}, {"feature": 4.0}, {"feature": 993.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:28490:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "28490", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 1.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:28490:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "28490", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 3.0}, {"feature": 2.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 993.0}, {"feature": 4.0}, {"feature": 993.0}, {"feature": 9.0}, {"feature": 9.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1638.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1169.0}, {"feature": 5.0}, {"feature": 1169.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1638.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 2.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 4.0}, {"feature": 3.0}, {"feature": 132.0}, {"feature": 1.0}, {"feature": 132.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 19.0}, {"feature": 1483.0}, {"feature": 8.0}, {"feature": 2037.0}, {"feature": 18.0}, {"feature": 18.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:18874:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "18874", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 12.0}, {"feature": 10.0}, {"feature": 993.0}, {"feature": 4.0}, {"feature": 993.0}, {"feature": 10.0}, {"feature": 10.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 3.0}, {"feature": 3.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:root:Metrics: 10
DEBUG:root:Batch time: 0.004754304885864258
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics reply: {"message": "OK, information received."}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeBatchConnectionStatistics request: {"metrics": [{"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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": 11583.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 19.0}, {"feature": 1483.0}, {"feature": 8.0}, {"feature": 2037.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 20.0}, {"feature": 1483.0}, {"feature": 9.0}, {"feature": 2060.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 20.0}, {"feature": 1483.0}, {"feature": 9.0}, {"feature": 2060.0}, {"feature": 20.0}, {"feature": 20.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1244.0}, {"feature": 7.0}, {"feature": 1661.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:51516:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51516", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 9.0}, {"feature": 993.0}, {"feature": 4.0}, {"feature": 993.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1244.0}, {"feature": 7.0}, {"feature": 1661.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:11400:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "11400", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 15.0}, {"feature": 14.0}, {"feature": 1192.0}, {"feature": 6.0}, {"feature": 1192.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1469.0}, {"feature": 7.0}, {"feature": 1638.0}]}, {"connection_metadata": {"flow_id": "10.100.200.3:42364:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42364", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 293.0}, {"feature": 1.0}, {"feature": 293.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 4593.0}, {"feature": 16.0}, {"feature": 24165.0}]}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:42370:192.168.1.115:443", "ip_d": "192.168.1.115", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "42370", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.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": 11583.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 20.0}, {"feature": 19.0}, {"feature": 1483.0}, {"feature": 8.0}, {"feature": 2037.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 20.0}, {"feature": 1483.0}, {"feature": 9.0}, {"feature": 2060.0}, {"feature": 19.0}, {"feature": 19.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:6212:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "6212", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 21.0}, {"feature": 20.0}, {"feature": 1483.0}, {"feature": 9.0}, {"feature": 2060.0}, {"feature": 20.0}, {"feature": 20.0}, {"feature": 1446.0}, {"feature": 8.0}, {"feature": 3176.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1244.0}, {"feature": 7.0}, {"feature": 1661.0}, {"feature": 12.0}, {"feature": 12.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:45778:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "45778", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 5.0}, {"feature": 4.0}, {"feature": 132.0}, {"feature": 2.0}, {"feature": 264.0}, {"feature": 4.0}, {"feature": 4.0}, {"feature": 0.0}, {"feature": 0.0}, {"feature": 0.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:51516:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "51516", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 11.0}, {"feature": 9.0}, {"feature": 993.0}, {"feature": 4.0}, {"feature": 993.0}, {"feature": 8.0}, {"feature": 8.0}, {"feature": 581.0}, {"feature": 3.0}, {"feature": 1016.0}]}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics reply: {"message": "Ok, information received"}
DEBUG:l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl:AnalyzeConnectionStatistics request: {"connection_metadata": {"flow_id": "10.100.200.3:3732:192.168.1.198:443", "ip_d": "192.168.1.198", "ip_o": "10.100.200.3", "port_d": "443", "port_o": "3732", "protocol": "TCP", "time_end": 1683057500.0, "time_start": 1683057500.0}, "features": [{"feature": 14.0}, {"feature": 13.0}, {"feature": 1244.0}, {"feature": 7.0}, {"feature": 1661.0}, {"feature": 13.0}, {"feature": 13.0}, {"feature": 1016.0}, {"feature": 4.0}, {"feature": 1451.0}]}