mirror of
https://github.com/utoni/nDPId.git
synced 2026-04-28 06:59:35 +00:00
bump libnDPI to 560a4e4954e2db38d995d3cba2c1dcc4276f92d5
* fix some SonarCloud issues Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
This commit is contained in:
parent
2651833c58
commit
e8ef267e0a
726 changed files with 3027 additions and 2279 deletions
2
libnDPI
2
libnDPI
|
|
@ -1 +1 @@
|
|||
Subproject commit df94d7e6b708927b518ebbc81fe5afdfe933ff8e
|
||||
Subproject commit 560a4e4954e2db38d995d3cba2c1dcc4276f92d5
|
||||
8
nDPId.c
8
nDPId.c
|
|
@ -4087,7 +4087,7 @@ static void ndpi_process_packet(uint8_t * const args,
|
|||
uint8_t is_new_flow = 0;
|
||||
|
||||
const struct ndpi_iphdr * ip;
|
||||
struct ndpi_ipv6hdr * ip6;
|
||||
const struct ndpi_ipv6hdr * ip6;
|
||||
const struct ndpi_tcphdr * tcp = NULL;
|
||||
|
||||
uint64_t time_us;
|
||||
|
|
@ -4156,7 +4156,7 @@ process_layer3_again:
|
|||
else if (type == ETH_P_IPV6)
|
||||
{
|
||||
ip = NULL;
|
||||
ip6 = (struct ndpi_ipv6hdr *)&packet[ip_offset];
|
||||
ip6 = (struct ndpi_ipv6hdr const *)&packet[ip_offset];
|
||||
if (header->caplen < ip_offset + sizeof(*ip6))
|
||||
{
|
||||
if (distribute_single_packet(reader_thread) != 0 && is_error_event_threshold(reader_thread->workflow) == 0)
|
||||
|
|
@ -4223,7 +4223,7 @@ process_layer3_again:
|
|||
{
|
||||
flow_basic.l3_type = L3_IP6;
|
||||
if (ndpi_detection_get_l4(
|
||||
(uint8_t *)ip6, ip_size, &l4_ptr, &l4_len, &flow_basic.l4_protocol, NDPI_DETECTION_ONLY_IPV6) != 0)
|
||||
(uint8_t const *)ip6, ip_size, &l4_ptr, &l4_len, &flow_basic.l4_protocol, NDPI_DETECTION_ONLY_IPV6) != 0)
|
||||
{
|
||||
if (distribute_single_packet(reader_thread) != 0 && is_error_event_threshold(reader_thread->workflow) == 0)
|
||||
{
|
||||
|
|
@ -4755,7 +4755,7 @@ process_layer3_again:
|
|||
flow_to_process->flow_extended.detected_l7_protocol =
|
||||
ndpi_detection_process_packet(workflow->ndpi_struct,
|
||||
&flow_to_process->info.detection_data->flow,
|
||||
ip != NULL ? (uint8_t *)ip : (uint8_t *)ip6,
|
||||
ip != NULL ? (uint8_t const *)ip : (uint8_t const *)ip6,
|
||||
ip_size,
|
||||
workflow->last_thread_time / 1000,
|
||||
NULL);
|
||||
|
|
|
|||
12
nDPIsrvd.c
12
nDPIsrvd.c
|
|
@ -300,10 +300,10 @@ static int add_to_additional_write_buffers(struct remote_desc * const remote,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void logger_nDPIsrvd(struct remote_desc const * const remote,
|
||||
char const * const prefix,
|
||||
char const * const format,
|
||||
...)
|
||||
static __attribute__((format(printf, 3, 4))) void logger_nDPIsrvd(struct remote_desc const * const remote,
|
||||
char const * const prefix,
|
||||
char const * const format,
|
||||
...)
|
||||
{
|
||||
char logbuf[512];
|
||||
va_list ap;
|
||||
|
|
@ -1105,7 +1105,7 @@ static int new_connection(struct nio * const io, int eventfd)
|
|||
current->event_collector_un.pid = ucred.pid;
|
||||
#endif
|
||||
|
||||
logger_nDPIsrvd(current, "New collector connection from", "");
|
||||
logger_nDPIsrvd(current, "New collector connection from", "%s", "");
|
||||
break;
|
||||
case DISTRIBUTOR_UN:
|
||||
case DISTRIBUTOR_IN:
|
||||
|
|
@ -1176,7 +1176,7 @@ static int new_connection(struct nio * const io, int eventfd)
|
|||
}
|
||||
}
|
||||
|
||||
logger_nDPIsrvd(current, "New distributor connection from", "");
|
||||
logger_nDPIsrvd(current, "New distributor connection from", "%s", "");
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,9 +61,9 @@
|
|||
~~ total active/idle flows...: 6/6
|
||||
~~ total timeout flows.......: 1
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8768372 bytes
|
||||
~~ total memory freed........: 8768372 bytes
|
||||
~~ total allocations/frees...: 140001/140001
|
||||
~~ total memory allocated....: 8799471 bytes
|
||||
~~ total memory freed........: 8799471 bytes
|
||||
~~ total allocations/frees...: 140736/140736
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 569 chars
|
||||
~~ json message max len.......: 1518 chars
|
||||
|
|
|
|||
|
|
@ -667,9 +667,9 @@
|
|||
~~ total active/idle flows...: 83/83
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 10038934 bytes
|
||||
~~ total memory freed........: 10038934 bytes
|
||||
~~ total allocations/frees...: 142647/142647
|
||||
~~ total memory allocated....: 10069076 bytes
|
||||
~~ total memory freed........: 10069076 bytes
|
||||
~~ total allocations/frees...: 143353/143353
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 344 chars
|
||||
~~ json message max len.......: 2550 chars
|
||||
|
|
|
|||
|
|
@ -170,9 +170,9 @@
|
|||
~~ total active/idle flows...: 24/24
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8725049 bytes
|
||||
~~ total memory freed........: 8725049 bytes
|
||||
~~ total allocations/frees...: 140415/140415
|
||||
~~ total memory allocated....: 8755455 bytes
|
||||
~~ total memory freed........: 8755455 bytes
|
||||
~~ total allocations/frees...: 141129/141129
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 575 chars
|
||||
~~ json message max len.......: 2404 chars
|
||||
|
|
|
|||
|
|
@ -93,9 +93,9 @@
|
|||
~~ total active/idle flows...: 12/12
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8657742 bytes
|
||||
~~ total memory freed........: 8657742 bytes
|
||||
~~ total allocations/frees...: 140027/140027
|
||||
~~ total memory allocated....: 8688775 bytes
|
||||
~~ total memory freed........: 8688775 bytes
|
||||
~~ total allocations/frees...: 140760/140760
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 586 chars
|
||||
~~ json message max len.......: 2407 chars
|
||||
|
|
|
|||
|
|
@ -47,9 +47,9 @@
|
|||
~~ total active/idle flows...: 4/4
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8648777 bytes
|
||||
~~ total memory freed........: 8648777 bytes
|
||||
~~ total allocations/frees...: 140509/140509
|
||||
~~ total memory allocated....: 8679843 bytes
|
||||
~~ total memory freed........: 8679843 bytes
|
||||
~~ total allocations/frees...: 141243/141243
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 539 chars
|
||||
~~ json message max len.......: 2390 chars
|
||||
|
|
|
|||
|
|
@ -61,9 +61,9 @@
|
|||
~~ total active/idle flows...: 6/6
|
||||
~~ total timeout flows.......: 1
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8784836 bytes
|
||||
~~ total memory freed........: 8784836 bytes
|
||||
~~ total allocations/frees...: 140003/140003
|
||||
~~ total memory allocated....: 8815935 bytes
|
||||
~~ total memory freed........: 8815935 bytes
|
||||
~~ total allocations/frees...: 140738/140738
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 526 chars
|
||||
~~ json message max len.......: 1475 chars
|
||||
|
|
|
|||
|
|
@ -667,9 +667,9 @@
|
|||
~~ total active/idle flows...: 83/83
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 10055398 bytes
|
||||
~~ total memory freed........: 10055398 bytes
|
||||
~~ total allocations/frees...: 142649/142649
|
||||
~~ total memory allocated....: 10085540 bytes
|
||||
~~ total memory freed........: 10085540 bytes
|
||||
~~ total allocations/frees...: 143355/143355
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 301 chars
|
||||
~~ json message max len.......: 2507 chars
|
||||
|
|
|
|||
|
|
@ -140,9 +140,9 @@
|
|||
~~ total active/idle flows...: 13/13
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8665312 bytes
|
||||
~~ total memory freed........: 8665312 bytes
|
||||
~~ total allocations/frees...: 140699/140699
|
||||
~~ total memory allocated....: 8696147 bytes
|
||||
~~ total memory freed........: 8696147 bytes
|
||||
~~ total allocations/frees...: 141426/141426
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 581 chars
|
||||
~~ json message max len.......: 2332 chars
|
||||
|
|
|
|||
|
|
@ -170,9 +170,9 @@
|
|||
~~ total active/idle flows...: 24/24
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8725049 bytes
|
||||
~~ total memory freed........: 8725049 bytes
|
||||
~~ total allocations/frees...: 140415/140415
|
||||
~~ total memory allocated....: 8755455 bytes
|
||||
~~ total memory freed........: 8755455 bytes
|
||||
~~ total allocations/frees...: 141129/141129
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 581 chars
|
||||
~~ json message max len.......: 2410 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8618699 bytes
|
||||
~~ total memory freed........: 8618699 bytes
|
||||
~~ total allocations/frees...: 139899/139899
|
||||
~~ total memory allocated....: 8649864 bytes
|
||||
~~ total memory freed........: 8649864 bytes
|
||||
~~ total allocations/frees...: 140636/140636
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 555 chars
|
||||
~~ json message max len.......: 2331 chars
|
||||
|
|
|
|||
|
|
@ -60,9 +60,9 @@
|
|||
~~ total active/idle flows...: 5/5
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8728396 bytes
|
||||
~~ total memory freed........: 8728396 bytes
|
||||
~~ total allocations/frees...: 141884/141884
|
||||
~~ total memory allocated....: 8759594 bytes
|
||||
~~ total memory freed........: 8759594 bytes
|
||||
~~ total allocations/frees...: 142622/142622
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 561 chars
|
||||
~~ json message max len.......: 2465 chars
|
||||
|
|
|
|||
|
|
@ -222,9 +222,9 @@
|
|||
~~ total active/idle flows...: 25/25
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8697067 bytes
|
||||
~~ total memory freed........: 8697067 bytes
|
||||
~~ total allocations/frees...: 140928/140928
|
||||
~~ total memory allocated....: 8727737 bytes
|
||||
~~ total memory freed........: 8727737 bytes
|
||||
~~ total allocations/frees...: 141650/141650
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 566 chars
|
||||
~~ json message max len.......: 2477 chars
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8614747 bytes
|
||||
~~ total memory freed........: 8614747 bytes
|
||||
~~ total allocations/frees...: 139823/139823
|
||||
~~ total memory allocated....: 8645912 bytes
|
||||
~~ total memory freed........: 8645912 bytes
|
||||
~~ total allocations/frees...: 140560/140560
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 549 chars
|
||||
~~ json message max len.......: 1544 chars
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8614947 bytes
|
||||
~~ total memory freed........: 8614947 bytes
|
||||
~~ total allocations/frees...: 139841/139841
|
||||
~~ total memory allocated....: 8646112 bytes
|
||||
~~ total memory freed........: 8646112 bytes
|
||||
~~ total allocations/frees...: 140578/140578
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 562 chars
|
||||
~~ json message max len.......: 2467 chars
|
||||
|
|
|
|||
|
|
@ -61,9 +61,9 @@
|
|||
~~ total active/idle flows...: 6/6
|
||||
~~ total timeout flows.......: 1
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8784836 bytes
|
||||
~~ total memory freed........: 8784836 bytes
|
||||
~~ total allocations/frees...: 140003/140003
|
||||
~~ total memory allocated....: 8815935 bytes
|
||||
~~ total memory freed........: 8815935 bytes
|
||||
~~ total allocations/frees...: 140738/140738
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 532 chars
|
||||
~~ json message max len.......: 1481 chars
|
||||
|
|
|
|||
|
|
@ -65,9 +65,9 @@
|
|||
~~ total active/idle flows...: 4/4
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8624457 bytes
|
||||
~~ total memory freed........: 8624457 bytes
|
||||
~~ total allocations/frees...: 139947/139947
|
||||
~~ total memory allocated....: 8655589 bytes
|
||||
~~ total memory freed........: 8655589 bytes
|
||||
~~ total allocations/frees...: 140683/140683
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 597 chars
|
||||
~~ json message max len.......: 2308 chars
|
||||
|
|
|
|||
|
|
@ -667,9 +667,9 @@
|
|||
~~ total active/idle flows...: 83/83
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 10055398 bytes
|
||||
~~ total memory freed........: 10055398 bytes
|
||||
~~ total allocations/frees...: 142649/142649
|
||||
~~ total memory allocated....: 10085540 bytes
|
||||
~~ total memory freed........: 10085540 bytes
|
||||
~~ total allocations/frees...: 143355/143355
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 307 chars
|
||||
~~ json message max len.......: 2513 chars
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8616017 bytes
|
||||
~~ total memory freed........: 8616017 bytes
|
||||
~~ total allocations/frees...: 139808/139808
|
||||
~~ total memory allocated....: 8647215 bytes
|
||||
~~ total memory freed........: 8647215 bytes
|
||||
~~ total allocations/frees...: 140546/140546
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 565 chars
|
||||
~~ json message max len.......: 1267 chars
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8615963 bytes
|
||||
~~ total memory freed........: 8615963 bytes
|
||||
~~ total allocations/frees...: 139806/139806
|
||||
~~ total memory allocated....: 8647161 bytes
|
||||
~~ total memory freed........: 8647161 bytes
|
||||
~~ total allocations/frees...: 140544/140544
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 565 chars
|
||||
~~ json message max len.......: 1152 chars
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8616193 bytes
|
||||
~~ total memory freed........: 8616193 bytes
|
||||
~~ total allocations/frees...: 139814/139814
|
||||
~~ total memory allocated....: 8647391 bytes
|
||||
~~ total memory freed........: 8647391 bytes
|
||||
~~ total allocations/frees...: 140552/140552
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 582 chars
|
||||
~~ json message max len.......: 1256 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8630929 bytes
|
||||
~~ total memory freed........: 8630929 bytes
|
||||
~~ total allocations/frees...: 139836/139836
|
||||
~~ total memory allocated....: 8662127 bytes
|
||||
~~ total memory freed........: 8662127 bytes
|
||||
~~ total allocations/frees...: 140574/140574
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 582 chars
|
||||
~~ json message max len.......: 2506 chars
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8615988 bytes
|
||||
~~ total memory freed........: 8615988 bytes
|
||||
~~ total allocations/frees...: 139807/139807
|
||||
~~ total memory allocated....: 8647186 bytes
|
||||
~~ total memory freed........: 8647186 bytes
|
||||
~~ total allocations/frees...: 140545/140545
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 581 chars
|
||||
~~ json message max len.......: 1341 chars
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8615925 bytes
|
||||
~~ total memory freed........: 8615925 bytes
|
||||
~~ total allocations/frees...: 139804/139804
|
||||
~~ total memory allocated....: 8647123 bytes
|
||||
~~ total memory freed........: 8647123 bytes
|
||||
~~ total allocations/frees...: 140542/140542
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 581 chars
|
||||
~~ json message max len.......: 1102 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8622812 bytes
|
||||
~~ total memory freed........: 8622812 bytes
|
||||
~~ total allocations/frees...: 139811/139811
|
||||
~~ total memory allocated....: 8654010 bytes
|
||||
~~ total memory freed........: 8654010 bytes
|
||||
~~ total allocations/frees...: 140549/140549
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 588 chars
|
||||
~~ json message max len.......: 1380 chars
|
||||
|
|
|
|||
|
|
@ -20,9 +20,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8815932 bytes
|
||||
~~ total memory freed........: 8815932 bytes
|
||||
~~ total allocations/frees...: 139986/139986
|
||||
~~ total memory allocated....: 8847130 bytes
|
||||
~~ total memory freed........: 8847130 bytes
|
||||
~~ total allocations/frees...: 140724/140724
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 574 chars
|
||||
~~ json message max len.......: 3999 chars
|
||||
|
|
|
|||
|
|
@ -1293,9 +1293,9 @@
|
|||
~~ total active/idle flows...: 197/197
|
||||
~~ total timeout flows.......: 15
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 9231514 bytes
|
||||
~~ total memory freed........: 9231514 bytes
|
||||
~~ total allocations/frees...: 144705/144705
|
||||
~~ total memory allocated....: 9257069 bytes
|
||||
~~ total memory freed........: 9257069 bytes
|
||||
~~ total allocations/frees...: 145272/145272
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 529 chars
|
||||
~~ json message max len.......: 11852 chars
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8615759 bytes
|
||||
~~ total memory freed........: 8615759 bytes
|
||||
~~ total allocations/frees...: 139798/139798
|
||||
~~ total memory allocated....: 8646957 bytes
|
||||
~~ total memory freed........: 8646957 bytes
|
||||
~~ total allocations/frees...: 140536/140536
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 592 chars
|
||||
~~ json message max len.......: 2505 chars
|
||||
|
|
|
|||
|
|
@ -20,9 +20,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8637370 bytes
|
||||
~~ total memory freed........: 8637370 bytes
|
||||
~~ total allocations/frees...: 139915/139915
|
||||
~~ total memory allocated....: 8668568 bytes
|
||||
~~ total memory freed........: 8668568 bytes
|
||||
~~ total allocations/frees...: 140653/140653
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 546 chars
|
||||
~~ json message max len.......: 2170 chars
|
||||
|
|
|
|||
|
|
@ -20,9 +20,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8677718 bytes
|
||||
~~ total memory freed........: 8677718 bytes
|
||||
~~ total allocations/frees...: 140477/140477
|
||||
~~ total memory allocated....: 8708916 bytes
|
||||
~~ total memory freed........: 8708916 bytes
|
||||
~~ total allocations/frees...: 141215/141215
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 549 chars
|
||||
~~ json message max len.......: 2185 chars
|
||||
|
|
|
|||
|
|
@ -20,9 +20,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8635189 bytes
|
||||
~~ total memory freed........: 8635189 bytes
|
||||
~~ total allocations/frees...: 139877/139877
|
||||
~~ total memory allocated....: 8666387 bytes
|
||||
~~ total memory freed........: 8666387 bytes
|
||||
~~ total allocations/frees...: 140615/140615
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 546 chars
|
||||
~~ json message max len.......: 2459 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8617055 bytes
|
||||
~~ total memory freed........: 8617055 bytes
|
||||
~~ total allocations/frees...: 139843/139843
|
||||
~~ total memory allocated....: 8648220 bytes
|
||||
~~ total memory freed........: 8648220 bytes
|
||||
~~ total allocations/frees...: 140580/140580
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 546 chars
|
||||
~~ json message max len.......: 2200 chars
|
||||
|
|
|
|||
|
|
@ -20,9 +20,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8634679 bytes
|
||||
~~ total memory freed........: 8634679 bytes
|
||||
~~ total allocations/frees...: 139847/139847
|
||||
~~ total memory allocated....: 8665877 bytes
|
||||
~~ total memory freed........: 8665877 bytes
|
||||
~~ total allocations/frees...: 140585/140585
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 548 chars
|
||||
~~ json message max len.......: 2167 chars
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@
|
|||
~~ total active/idle flows...: 0/0
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8611208 bytes
|
||||
~~ total memory freed........: 8611208 bytes
|
||||
~~ total allocations/frees...: 139784/139784
|
||||
~~ total memory allocated....: 8642406 bytes
|
||||
~~ total memory freed........: 8642406 bytes
|
||||
~~ total allocations/frees...: 140522/140522
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 303 chars
|
||||
~~ json message max len.......: 816 chars
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8613793 bytes
|
||||
~~ total memory freed........: 8613793 bytes
|
||||
~~ total allocations/frees...: 139800/139800
|
||||
~~ total memory allocated....: 8644958 bytes
|
||||
~~ total memory freed........: 8644958 bytes
|
||||
~~ total allocations/frees...: 140537/140537
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 592 chars
|
||||
~~ json message max len.......: 2494 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8617328 bytes
|
||||
~~ total memory freed........: 8617328 bytes
|
||||
~~ total allocations/frees...: 139922/139922
|
||||
~~ total memory allocated....: 8648526 bytes
|
||||
~~ total memory freed........: 8648526 bytes
|
||||
~~ total allocations/frees...: 140660/140660
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 592 chars
|
||||
~~ json message max len.......: 2020 chars
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
~~ total active/idle flows...: 2/2
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8616138 bytes
|
||||
~~ total memory freed........: 8616138 bytes
|
||||
~~ total allocations/frees...: 139808/139808
|
||||
~~ total memory allocated....: 8647336 bytes
|
||||
~~ total memory freed........: 8647336 bytes
|
||||
~~ total allocations/frees...: 140546/140546
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 592 chars
|
||||
~~ json message max len.......: 1039 chars
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8614123 bytes
|
||||
~~ total memory freed........: 8614123 bytes
|
||||
~~ total allocations/frees...: 139811/139811
|
||||
~~ total memory allocated....: 8645288 bytes
|
||||
~~ total memory freed........: 8645288 bytes
|
||||
~~ total allocations/frees...: 140548/140548
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 529 chars
|
||||
~~ json message max len.......: 1106 chars
|
||||
|
|
|
|||
|
|
@ -15,9 +15,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8613706 bytes
|
||||
~~ total memory freed........: 8613706 bytes
|
||||
~~ total allocations/frees...: 139797/139797
|
||||
~~ total memory allocated....: 8644871 bytes
|
||||
~~ total memory freed........: 8644871 bytes
|
||||
~~ total allocations/frees...: 140534/140534
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 301 chars
|
||||
~~ json message max len.......: 965 chars
|
||||
|
|
|
|||
|
|
@ -275,9 +275,9 @@
|
|||
~~ total active/idle flows...: 31/31
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8693470 bytes
|
||||
~~ total memory freed........: 8693470 bytes
|
||||
~~ total allocations/frees...: 140360/140360
|
||||
~~ total memory allocated....: 8723645 bytes
|
||||
~~ total memory freed........: 8723645 bytes
|
||||
~~ total allocations/frees...: 141067/141067
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 525 chars
|
||||
~~ json message max len.......: 1238 chars
|
||||
|
|
|
|||
|
|
@ -58,9 +58,9 @@
|
|||
~~ total active/idle flows...: 5/5
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8668753 bytes
|
||||
~~ total memory freed........: 8668753 bytes
|
||||
~~ total allocations/frees...: 141400/141400
|
||||
~~ total memory allocated....: 8699819 bytes
|
||||
~~ total memory freed........: 8699819 bytes
|
||||
~~ total allocations/frees...: 142134/142134
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 594 chars
|
||||
~~ json message max len.......: 2232 chars
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@
|
|||
~~ total active/idle flows...: 2/2
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8616581 bytes
|
||||
~~ total memory freed........: 8616581 bytes
|
||||
~~ total allocations/frees...: 139823/139823
|
||||
~~ total memory allocated....: 8647713 bytes
|
||||
~~ total memory freed........: 8647713 bytes
|
||||
~~ total allocations/frees...: 140559/140559
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 529 chars
|
||||
~~ json message max len.......: 1103 chars
|
||||
|
|
|
|||
|
|
@ -275,9 +275,9 @@
|
|||
~~ total active/idle flows...: 38/38
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8842456 bytes
|
||||
~~ total memory freed........: 8842456 bytes
|
||||
~~ total allocations/frees...: 140788/140788
|
||||
~~ total memory allocated....: 8872961 bytes
|
||||
~~ total memory freed........: 8872961 bytes
|
||||
~~ total allocations/frees...: 141505/141505
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 544 chars
|
||||
~~ json message max len.......: 2375 chars
|
||||
|
|
|
|||
|
|
@ -151,9 +151,9 @@
|
|||
~~ total active/idle flows...: 20/20
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8785030 bytes
|
||||
~~ total memory freed........: 8785030 bytes
|
||||
~~ total allocations/frees...: 143257/143257
|
||||
~~ total memory allocated....: 8816030 bytes
|
||||
~~ total memory freed........: 8816030 bytes
|
||||
~~ total allocations/frees...: 143989/143989
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 542 chars
|
||||
~~ json message max len.......: 2709 chars
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8613706 bytes
|
||||
~~ total memory freed........: 8613706 bytes
|
||||
~~ total allocations/frees...: 139797/139797
|
||||
~~ total memory allocated....: 8644871 bytes
|
||||
~~ total memory freed........: 8644871 bytes
|
||||
~~ total allocations/frees...: 140534/140534
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 587 chars
|
||||
~~ json message max len.......: 1005 chars
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8613706 bytes
|
||||
~~ total memory freed........: 8613706 bytes
|
||||
~~ total allocations/frees...: 139797/139797
|
||||
~~ total memory allocated....: 8644871 bytes
|
||||
~~ total memory freed........: 8644871 bytes
|
||||
~~ total allocations/frees...: 140534/140534
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 574 chars
|
||||
~~ json message max len.......: 959 chars
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8613706 bytes
|
||||
~~ total memory freed........: 8613706 bytes
|
||||
~~ total allocations/frees...: 139797/139797
|
||||
~~ total memory allocated....: 8644871 bytes
|
||||
~~ total memory freed........: 8644871 bytes
|
||||
~~ total allocations/frees...: 140534/140534
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 574 chars
|
||||
~~ json message max len.......: 959 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8617816 bytes
|
||||
~~ total memory freed........: 8617816 bytes
|
||||
~~ total allocations/frees...: 139869/139869
|
||||
~~ total memory allocated....: 8649014 bytes
|
||||
~~ total memory freed........: 8649014 bytes
|
||||
~~ total allocations/frees...: 140607/140607
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 532 chars
|
||||
~~ json message max len.......: 2004 chars
|
||||
|
|
|
|||
|
|
@ -14,9 +14,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8613707 bytes
|
||||
~~ total memory freed........: 8613707 bytes
|
||||
~~ total allocations/frees...: 139797/139797
|
||||
~~ total memory allocated....: 8644872 bytes
|
||||
~~ total memory freed........: 8644872 bytes
|
||||
~~ total allocations/frees...: 140534/140534
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 589 chars
|
||||
~~ json message max len.......: 1093 chars
|
||||
|
|
|
|||
|
|
@ -3197,9 +3197,9 @@
|
|||
~~ total active/idle flows...: 797/797
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 10716757 bytes
|
||||
~~ total memory freed........: 10716757 bytes
|
||||
~~ total allocations/frees...: 153959/153959
|
||||
~~ total memory allocated....: 10747955 bytes
|
||||
~~ total memory freed........: 10747955 bytes
|
||||
~~ total allocations/frees...: 154697/154697
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 594 chars
|
||||
~~ json message max len.......: 1806 chars
|
||||
|
|
|
|||
|
|
@ -81,9 +81,9 @@
|
|||
~~ total active/idle flows...: 9/9
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8641437 bytes
|
||||
~~ total memory freed........: 8641437 bytes
|
||||
~~ total allocations/frees...: 140094/140094
|
||||
~~ total memory allocated....: 8672338 bytes
|
||||
~~ total memory freed........: 8672338 bytes
|
||||
~~ total allocations/frees...: 140823/140823
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 553 chars
|
||||
~~ json message max len.......: 1639 chars
|
||||
|
|
|
|||
|
|
@ -5311,9 +5311,9 @@
|
|||
~~ total active/idle flows...: 661/661
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 10502145 bytes
|
||||
~~ total memory freed........: 10502145 bytes
|
||||
~~ total allocations/frees...: 156664/156664
|
||||
~~ total memory allocated....: 10532617 bytes
|
||||
~~ total memory freed........: 10532617 bytes
|
||||
~~ total allocations/frees...: 157380/157380
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 550 chars
|
||||
~~ json message max len.......: 2605 chars
|
||||
|
|
|
|||
|
|
@ -44,9 +44,9 @@
|
|||
~~ total active/idle flows...: 4/4
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8622824 bytes
|
||||
~~ total memory freed........: 8622824 bytes
|
||||
~~ total allocations/frees...: 139892/139892
|
||||
~~ total memory allocated....: 8653890 bytes
|
||||
~~ total memory freed........: 8653890 bytes
|
||||
~~ total allocations/frees...: 140626/140626
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 539 chars
|
||||
~~ json message max len.......: 976 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8614374 bytes
|
||||
~~ total memory freed........: 8614374 bytes
|
||||
~~ total allocations/frees...: 139820/139820
|
||||
~~ total memory allocated....: 8645539 bytes
|
||||
~~ total memory freed........: 8645539 bytes
|
||||
~~ total allocations/frees...: 140557/140557
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 547 chars
|
||||
~~ json message max len.......: 1171 chars
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8614141 bytes
|
||||
~~ total memory freed........: 8614141 bytes
|
||||
~~ total allocations/frees...: 139812/139812
|
||||
~~ total memory allocated....: 8645306 bytes
|
||||
~~ total memory freed........: 8645306 bytes
|
||||
~~ total allocations/frees...: 140549/140549
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 542 chars
|
||||
~~ json message max len.......: 974 chars
|
||||
|
|
|
|||
|
|
@ -244,9 +244,9 @@
|
|||
~~ total active/idle flows...: 26/26
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8687089 bytes
|
||||
~~ total memory freed........: 8687089 bytes
|
||||
~~ total allocations/frees...: 140499/140499
|
||||
~~ total memory allocated....: 8717429 bytes
|
||||
~~ total memory freed........: 8717429 bytes
|
||||
~~ total allocations/frees...: 141211/141211
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 594 chars
|
||||
~~ json message max len.......: 2185 chars
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@
|
|||
~~ total active/idle flows...: 2/2
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8616320 bytes
|
||||
~~ total memory freed........: 8616320 bytes
|
||||
~~ total allocations/frees...: 139814/139814
|
||||
~~ total memory allocated....: 8647452 bytes
|
||||
~~ total memory freed........: 8647452 bytes
|
||||
~~ total allocations/frees...: 140550/140550
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 586 chars
|
||||
~~ json message max len.......: 993 chars
|
||||
|
|
|
|||
|
|
@ -49,9 +49,9 @@
|
|||
~~ total active/idle flows...: 2/2
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8616892 bytes
|
||||
~~ total memory freed........: 8616892 bytes
|
||||
~~ total allocations/frees...: 139834/139834
|
||||
~~ total memory allocated....: 8648024 bytes
|
||||
~~ total memory freed........: 8648024 bytes
|
||||
~~ total allocations/frees...: 140570/140570
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 313 chars
|
||||
~~ json message max len.......: 1513 chars
|
||||
|
|
|
|||
|
|
@ -1421,9 +1421,9 @@
|
|||
~~ total active/idle flows...: 160/160
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 10606709 bytes
|
||||
~~ total memory freed........: 10606709 bytes
|
||||
~~ total allocations/frees...: 145728/145728
|
||||
~~ total memory allocated....: 10635993 bytes
|
||||
~~ total memory freed........: 10635993 bytes
|
||||
~~ total allocations/frees...: 146408/146408
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 300 chars
|
||||
~~ json message max len.......: 2508 chars
|
||||
|
|
|
|||
|
|
@ -141,9 +141,9 @@
|
|||
~~ total active/idle flows...: 15/15
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8685428 bytes
|
||||
~~ total memory freed........: 8685428 bytes
|
||||
~~ total allocations/frees...: 140204/140204
|
||||
~~ total memory allocated....: 8716131 bytes
|
||||
~~ total memory freed........: 8716131 bytes
|
||||
~~ total allocations/frees...: 140927/140927
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 546 chars
|
||||
~~ json message max len.......: 985 chars
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8613706 bytes
|
||||
~~ total memory freed........: 8613706 bytes
|
||||
~~ total allocations/frees...: 139797/139797
|
||||
~~ total memory allocated....: 8644871 bytes
|
||||
~~ total memory freed........: 8644871 bytes
|
||||
~~ total allocations/frees...: 140534/140534
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 530 chars
|
||||
~~ json message max len.......: 957 chars
|
||||
|
|
|
|||
|
|
@ -34,9 +34,9 @@
|
|||
~~ total active/idle flows...: 3/3
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8629458 bytes
|
||||
~~ total memory freed........: 8629458 bytes
|
||||
~~ total allocations/frees...: 139985/139985
|
||||
~~ total memory allocated....: 8660557 bytes
|
||||
~~ total memory freed........: 8660557 bytes
|
||||
~~ total allocations/frees...: 140720/140720
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 544 chars
|
||||
~~ json message max len.......: 2138 chars
|
||||
|
|
|
|||
|
|
@ -442,9 +442,9 @@
|
|||
~~ total active/idle flows...: 63/63
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 9145720 bytes
|
||||
~~ total memory freed........: 9145720 bytes
|
||||
~~ total allocations/frees...: 141291/141291
|
||||
~~ total memory allocated....: 9175730 bytes
|
||||
~~ total memory freed........: 9175730 bytes
|
||||
~~ total allocations/frees...: 141993/141993
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 546 chars
|
||||
~~ json message max len.......: 2684 chars
|
||||
|
|
|
|||
|
|
@ -463,9 +463,9 @@
|
|||
~~ total active/idle flows...: 69/69
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8910365 bytes
|
||||
~~ total memory freed........: 8910365 bytes
|
||||
~~ total allocations/frees...: 141287/141287
|
||||
~~ total memory allocated....: 8940012 bytes
|
||||
~~ total memory freed........: 8940012 bytes
|
||||
~~ total allocations/frees...: 141978/141978
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 527 chars
|
||||
~~ json message max len.......: 2661 chars
|
||||
|
|
|
|||
|
|
@ -72,9 +72,9 @@
|
|||
~~ total active/idle flows...: 7/7
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8691325 bytes
|
||||
~~ total memory freed........: 8691325 bytes
|
||||
~~ total allocations/frees...: 140079/140079
|
||||
~~ total memory allocated....: 8722457 bytes
|
||||
~~ total memory freed........: 8722457 bytes
|
||||
~~ total allocations/frees...: 140815/140815
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 532 chars
|
||||
~~ json message max len.......: 2673 chars
|
||||
|
|
|
|||
|
|
@ -284,9 +284,9 @@
|
|||
~~ total active/idle flows...: 50/50
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8743503 bytes
|
||||
~~ total memory freed........: 8743503 bytes
|
||||
~~ total allocations/frees...: 140689/140689
|
||||
~~ total memory allocated....: 8773051 bytes
|
||||
~~ total memory freed........: 8773051 bytes
|
||||
~~ total allocations/frees...: 141377/141377
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 531 chars
|
||||
~~ json message max len.......: 2204 chars
|
||||
|
|
|
|||
|
|
@ -25,9 +25,9 @@
|
|||
~~ total active/idle flows...: 2/2
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8621137 bytes
|
||||
~~ total memory freed........: 8621137 bytes
|
||||
~~ total allocations/frees...: 139841/139841
|
||||
~~ total memory allocated....: 8652269 bytes
|
||||
~~ total memory freed........: 8652269 bytes
|
||||
~~ total allocations/frees...: 140577/140577
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 541 chars
|
||||
~~ json message max len.......: 973 chars
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
00536{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":17,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":2,"flow_packet_id":2,"flow_src_last_pkt_time":1655048600873000,"flow_dst_last_pkt_time":1655048600897000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":62,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":62,"pkt_l4_len":28,"thread_ts_usec":1655048600897000,"pkt":"YDjgxTWgeJS0JASgCABFAAAwAABAADcGRkkFPjU1wKgCZABQ\/L3TPGfsOktLtnASBbTCqQAAAgQFrAEDAwI="}
|
||||
00523{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":18,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":2,"flow_packet_id":3,"flow_src_last_pkt_time":1655048600901000,"flow_dst_last_pkt_time":1655048600897000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":54,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":54,"pkt_l4_len":20,"thread_ts_usec":1655048600901000,"pkt":"eJS0JASgYDjgxTWgCABFAAAoK+pAAH8G0mbAqAJkBT41Nfy9AFA6S0u20zxn7VAQAgTyFwAA"}
|
||||
00657{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":19,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":2,"flow_packet_id":4,"flow_src_last_pkt_time":1655048600901000,"flow_dst_last_pkt_time":1655048600897000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":150,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":150,"pkt_l4_len":116,"thread_ts_usec":1655048600901000,"pkt":"eJS0JASgYDjgxTWgCABFAACIK+tAAH8G0gXAqAJkBT41Nfy9AFA6S0u20zxn7VAYAgRSBAAATk9TQQBgAQEAAAMBCLJaKUJSRRQAAAAA+C6zpq7EMUOR+R\/w3Dm0Io9lbBBMSUMULiKdz+pk\/a1RZ2FgDsvckO27L+4uJ680TFVOEALGS94Alg+MdKN9FpVUWsmF\/QhQ"}
|
||||
00916{"flow_event_id":7,"flow_event_name":"detected","thread_id":0,"packet_id":19,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":2,"flow_state":"info","flow_src_packets_processed":3,"flow_dst_packets_processed":1,"flow_first_seen":1655048600873000,"flow_src_last_pkt_time":1655048600901000,"flow_dst_last_pkt_time":1655048600897000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":96,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1655048600901000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":64701,"dst_port":80,"l4_proto":"tcp","ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00916{"flow_event_id":7,"flow_event_name":"detected","thread_id":0,"packet_id":19,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":2,"flow_state":"info","flow_src_packets_processed":3,"flow_dst_packets_processed":1,"flow_first_seen":1655048600873000,"flow_src_last_pkt_time":1655048600901000,"flow_dst_last_pkt_time":1655048600897000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":96,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1655048600901000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":64701,"dst_port":80,"l4_proto":"tcp","ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"Unknown","proto_by_ip_id":0,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00532{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":20,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":2,"flow_packet_id":5,"flow_src_last_pkt_time":1655048600901000,"flow_dst_last_pkt_time":1655048600926000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":60,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":60,"pkt_l4_len":20,"thread_ts_usec":1655048600926000,"pkt":"YDjgxTWgeJS0JASgCABFAAAoaUhAADcG3QgFPjU1wKgCZABQ\/L3TPGftOktMFlAQAW3yTgAAAAAAAAAA"}
|
||||
00809{"daemon_event_id":4,"daemon_event_name":"status","thread_id":0,"packet_id":29,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","version":"","ndpi_version":"","ndpi_api_version":0,"size_per_flow":1448,"packets-captured":29,"packets-processed":28,"pfring_active":false,"pfring_recv":0,"pfring_drop":0,"pfring_shunt":0,"total-skipped-flows":0,"total-l4-payload-len":231,"total-not-detected-flows":0,"total-guessed-flows":0,"total-detected-flows":2,"total-detection-updates":0,"total-updates":0,"current-active-flows":2,"total-active-flows":2,"total-idle-flows":0,"total-compressions":0,"total-compression-diff":0,"current-compression-diff":0,"global-alloc-count":0,"global-free-count":0,"global-alloc-bytes":0,"global-free-bytes":0,"total-events-serialized":19,"global_ts_usec":1655049392908000}
|
||||
00809{"daemon_event_id":4,"daemon_event_name":"status","thread_id":0,"packet_id":31,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","version":"","ndpi_version":"","ndpi_api_version":0,"size_per_flow":1448,"packets-captured":31,"packets-processed":30,"pfring_active":false,"pfring_recv":0,"pfring_drop":0,"pfring_shunt":0,"total-skipped-flows":0,"total-l4-payload-len":232,"total-not-detected-flows":0,"total-guessed-flows":0,"total-detected-flows":2,"total-detection-updates":0,"total-updates":0,"current-active-flows":2,"total-active-flows":2,"total-idle-flows":0,"total-compressions":0,"total-compression-diff":0,"current-compression-diff":0,"global-alloc-count":0,"global-free-count":0,"global-alloc-bytes":0,"global-free-bytes":0,"total-events-serialized":20,"global_ts_usec":1655053076804000}
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
00536{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":32,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":3,"flow_packet_id":2,"flow_src_last_pkt_time":1655053076804000,"flow_dst_last_pkt_time":1655053076831000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":62,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":62,"pkt_l4_len":28,"thread_ts_usec":1655053076831000,"pkt":"YDjgxTWgeJS0JASgCABFAAAwAABAADcGRkkFPjU1wKgCZABQ\/Yfi7KGu3hkdMXASBbQDJAAAAgQFrAEDAwI="}
|
||||
00523{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":33,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":3,"flow_packet_id":3,"flow_src_last_pkt_time":1655053076836000,"flow_dst_last_pkt_time":1655053076831000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":54,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":54,"pkt_l4_len":20,"thread_ts_usec":1655053076836000,"pkt":"eJS0JASgYDjgxTWgCABFAAAoLAtAAH8G0kXAqAJkBT41Nf2HAFDeGR0x4uyhr1AQAgQykgAA"}
|
||||
00657{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":34,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":3,"flow_packet_id":4,"flow_src_last_pkt_time":1655053076836000,"flow_dst_last_pkt_time":1655053076831000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":150,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":150,"pkt_l4_len":116,"thread_ts_usec":1655053076836000,"pkt":"eJS0JASgYDjgxTWgCABFAACILAxAAH8G0eTAqAJkBT41Nf2HAFDeGR0x4uyhr1AYAgSSfgAATk9TQQBgAQEAAAMBCLJaKUJSRRQAAAAA+C6zpq7EMUOR+R\/w3Dm0Io9lbBBMSUMULiKdz+pk\/a1RZ2FgDsvckO27L+4uJ680TFVOEALGS94Alg+MdKN9FpVUWsmF\/QhQ"}
|
||||
00916{"flow_event_id":7,"flow_event_name":"detected","thread_id":0,"packet_id":34,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":3,"flow_state":"info","flow_src_packets_processed":3,"flow_dst_packets_processed":1,"flow_first_seen":1655053076804000,"flow_src_last_pkt_time":1655053076836000,"flow_dst_last_pkt_time":1655053076831000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":96,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1655053076836000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":64903,"dst_port":80,"l4_proto":"tcp","ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00916{"flow_event_id":7,"flow_event_name":"detected","thread_id":0,"packet_id":34,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":3,"flow_state":"info","flow_src_packets_processed":3,"flow_dst_packets_processed":1,"flow_first_seen":1655053076804000,"flow_src_last_pkt_time":1655053076836000,"flow_dst_last_pkt_time":1655053076831000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":96,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1655053076836000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":64903,"dst_port":80,"l4_proto":"tcp","ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"Unknown","proto_by_ip_id":0,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00532{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":35,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":3,"flow_packet_id":5,"flow_src_last_pkt_time":1655053076836000,"flow_dst_last_pkt_time":1655053076863000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":60,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":60,"pkt_l4_len":20,"thread_ts_usec":1655053076863000,"pkt":"YDjgxTWgeJS0JASgCABFAAAo+2lAADcGSucFPjU1wKgCZABQ\/Yfi7KGv3hkdkVAQAW0yyQAAAAAAAAAA"}
|
||||
00958{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":38,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":1,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1655043322443000,"flow_src_last_pkt_time":1655044071816000,"flow_dst_last_pkt_time":1655044071842000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":16,"flow_src_tot_l4_payload_len":100,"flow_dst_tot_l4_payload_len":16,"midstream":0,"thread_ts_usec":1655053076921000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.54.29","src_port":64357,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00809{"daemon_event_id":4,"daemon_event_name":"status","thread_id":0,"packet_id":40,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","version":"","ndpi_version":"","ndpi_api_version":0,"size_per_flow":1448,"packets-captured":40,"packets-processed":39,"pfring_active":false,"pfring_recv":0,"pfring_drop":0,"pfring_shunt":0,"total-skipped-flows":0,"total-l4-payload-len":345,"total-not-detected-flows":0,"total-guessed-flows":0,"total-detected-flows":3,"total-detection-updates":0,"total-updates":0,"current-active-flows":2,"total-active-flows":3,"total-idle-flows":1,"total-compressions":0,"total-compression-diff":0,"current-compression-diff":0,"global-alloc-count":0,"global-free-count":0,"global-alloc-bytes":0,"global-free-bytes":0,"total-events-serialized":29,"global_ts_usec":1655053790549000}
|
||||
|
|
@ -36,8 +36,8 @@
|
|||
00657{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":49,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":4,"flow_packet_id":4,"flow_src_last_pkt_time":1655072558598000,"flow_dst_last_pkt_time":1655072558593000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":150,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":150,"pkt_l4_len":116,"thread_ts_usec":1655072558598000,"pkt":"eJS0JASgYDjgxTWgCABFAACISORAAH8Gs+jAqAJkBT42WeKuAFDHdiAVbKvBDVAYAgQW1gAATk9TQQBgAQEAAAMBCLJaKUJSRRQAAAAA+C6zpq7EMUOR+R\/w3Dm0Io9lbBBMSUMULiKdz+pk\/a1RZ2FgDsvckO27L+4uJ680TFVOEALGS94Alg+MdKN9FpVUWsmF\/QhQ"}
|
||||
00916{"flow_event_id":7,"flow_event_name":"detected","thread_id":0,"packet_id":49,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":4,"flow_state":"info","flow_src_packets_processed":3,"flow_dst_packets_processed":1,"flow_first_seen":1655072558567000,"flow_src_last_pkt_time":1655072558598000,"flow_dst_last_pkt_time":1655072558593000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":96,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1655072558598000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.54.89","src_port":58030,"dst_port":80,"l4_proto":"tcp","ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00531{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":50,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":4,"flow_packet_id":5,"flow_src_last_pkt_time":1655072558598000,"flow_dst_last_pkt_time":1655072558624000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":60,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":60,"pkt_l4_len":20,"thread_ts_usec":1655072558624000,"pkt":"YDjgxTWgeJS0JASgCABFAAAof7ZAADcGxXYFPjZZwKgCZABQ4q5sq8ENx3YgdVAQAW23IAAAAAAAAAAA"}
|
||||
00958{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":53,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":2,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1655048600873000,"flow_src_last_pkt_time":1655049392908000,"flow_dst_last_pkt_time":1655049392932000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":16,"flow_src_tot_l4_payload_len":100,"flow_dst_tot_l4_payload_len":16,"midstream":0,"thread_ts_usec":1655072558681000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":64701,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00958{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":53,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":3,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1655053076804000,"flow_src_last_pkt_time":1655054462572000,"flow_dst_last_pkt_time":1655054462599000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":16,"flow_src_tot_l4_payload_len":139,"flow_dst_tot_l4_payload_len":16,"midstream":0,"thread_ts_usec":1655072558681000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":64903,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00958{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":53,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":2,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1655048600873000,"flow_src_last_pkt_time":1655049392908000,"flow_dst_last_pkt_time":1655049392932000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":16,"flow_src_tot_l4_payload_len":100,"flow_dst_tot_l4_payload_len":16,"midstream":0,"thread_ts_usec":1655072558681000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":64701,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"Unknown","proto_by_ip_id":0,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00958{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":53,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":3,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1655053076804000,"flow_src_last_pkt_time":1655054462572000,"flow_dst_last_pkt_time":1655054462599000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":16,"flow_src_tot_l4_payload_len":139,"flow_dst_tot_l4_payload_len":16,"midstream":0,"thread_ts_usec":1655072558681000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":64903,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"Unknown","proto_by_ip_id":0,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00809{"daemon_event_id":4,"daemon_event_name":"status","thread_id":0,"packet_id":57,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","version":"","ndpi_version":"","ndpi_api_version":0,"size_per_flow":1448,"packets-captured":57,"packets-processed":56,"pfring_active":false,"pfring_recv":0,"pfring_drop":0,"pfring_shunt":0,"total-skipped-flows":0,"total-l4-payload-len":501,"total-not-detected-flows":0,"total-guessed-flows":0,"total-detected-flows":4,"total-detection-updates":0,"total-updates":0,"current-active-flows":1,"total-active-flows":4,"total-idle-flows":3,"total-compressions":0,"total-compression-diff":0,"current-compression-diff":0,"global-alloc-count":0,"global-free-count":0,"global-alloc-bytes":0,"global-free-bytes":0,"total-events-serialized":41,"global_ts_usec":1655073305718000}
|
||||
00809{"daemon_event_id":4,"daemon_event_name":"status","thread_id":0,"packet_id":61,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","version":"","ndpi_version":"","ndpi_api_version":0,"size_per_flow":1448,"packets-captured":61,"packets-processed":60,"pfring_active":false,"pfring_recv":0,"pfring_drop":0,"pfring_shunt":0,"total-skipped-flows":0,"total-l4-payload-len":503,"total-not-detected-flows":0,"total-guessed-flows":0,"total-detected-flows":4,"total-detection-updates":0,"total-updates":0,"current-active-flows":1,"total-active-flows":4,"total-idle-flows":3,"total-compressions":0,"total-compression-diff":0,"current-compression-diff":0,"global-alloc-count":0,"global-free-count":0,"global-alloc-bytes":0,"global-free-bytes":0,"total-events-serialized":42,"global_ts_usec":1657055010698000}
|
||||
00769{"flow_event_id":1,"flow_event_name":"new","thread_id":0,"packet_id":61,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":5,"flow_state":"info","flow_src_packets_processed":1,"flow_dst_packets_processed":0,"flow_first_seen":1657055010698000,"flow_src_last_pkt_time":1657055010698000,"flow_dst_last_pkt_time":1657055010698000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":0,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":0,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1657055010698000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":49758,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5}
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
00535{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":62,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":5,"flow_packet_id":2,"flow_src_last_pkt_time":1657055010698000,"flow_dst_last_pkt_time":1657055010725000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":62,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":62,"pkt_l4_len":28,"thread_ts_usec":1657055010725000,"pkt":"YDjgxTWgeJS0JASgCABFAAAwAABAADcGRkkFPjU1wKgCZABQwl7SZ2G3FJMoIHASBbRNYQAAAgQFrAEDAwI="}
|
||||
00523{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":63,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":5,"flow_packet_id":3,"flow_src_last_pkt_time":1657055010734000,"flow_dst_last_pkt_time":1657055010725000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":54,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":54,"pkt_l4_len":20,"thread_ts_usec":1657055010734000,"pkt":"eJS0JASgYDjgxTWgCABFAAAoaRxAAH8GlTTAqAJkBT41NcJeAFAUkygg0mdhuFAQAQR9zwAA"}
|
||||
00655{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":64,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":5,"flow_packet_id":4,"flow_src_last_pkt_time":1657055010734000,"flow_dst_last_pkt_time":1657055010725000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":150,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":150,"pkt_l4_len":116,"thread_ts_usec":1657055010734000,"pkt":"eJS0JASgYDjgxTWgCABFAACIaR1AAH8GlNPAqAJkBT41NcJeAFAUkygg0mdhuFAYAQRfJAAATk9TQQBgAQEAAAMBazDZfEJSRRQAAAAABYiCpXRH+WmBnnTxsTaTNZqejhNMSUMUAAAAANKFl0dRXc72tHtQFwKSnYJAcpIFTFVOEALhpIIAlg+MdKN9FpVUWsmF\/QhQ"}
|
||||
00916{"flow_event_id":7,"flow_event_name":"detected","thread_id":0,"packet_id":64,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":5,"flow_state":"info","flow_src_packets_processed":3,"flow_dst_packets_processed":1,"flow_first_seen":1657055010698000,"flow_src_last_pkt_time":1657055010734000,"flow_dst_last_pkt_time":1657055010725000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":96,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1657055010734000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":49758,"dst_port":80,"l4_proto":"tcp","ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00916{"flow_event_id":7,"flow_event_name":"detected","thread_id":0,"packet_id":64,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":5,"flow_state":"info","flow_src_packets_processed":3,"flow_dst_packets_processed":1,"flow_first_seen":1657055010698000,"flow_src_last_pkt_time":1657055010734000,"flow_dst_last_pkt_time":1657055010725000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":96,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1657055010734000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":49758,"dst_port":80,"l4_proto":"tcp","ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"Unknown","proto_by_ip_id":0,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00531{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":65,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":5,"flow_packet_id":5,"flow_src_last_pkt_time":1657055010734000,"flow_dst_last_pkt_time":1657055010762000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":60,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":60,"pkt_l4_len":20,"thread_ts_usec":1657055010762000,"pkt":"YDjgxTWgeJS0JASgCABFAAAonCZAADcGqioFPjU1wKgCZABQwl7SZ2G4FJMogFAQAW19BgAAAAAAAAAA"}
|
||||
00958{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":68,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":4,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1655072558567000,"flow_src_last_pkt_time":1655073554764000,"flow_dst_last_pkt_time":1655073554790000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":16,"flow_src_tot_l4_payload_len":100,"flow_dst_tot_l4_payload_len":16,"midstream":0,"thread_ts_usec":1657055010934000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.54.89","src_port":58030,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00809{"daemon_event_id":4,"daemon_event_name":"status","thread_id":0,"packet_id":70,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","version":"","ndpi_version":"","ndpi_api_version":0,"size_per_flow":1448,"packets-captured":70,"packets-processed":69,"pfring_active":false,"pfring_recv":0,"pfring_drop":0,"pfring_shunt":0,"total-skipped-flows":0,"total-l4-payload-len":616,"total-not-detected-flows":0,"total-guessed-flows":0,"total-detected-flows":5,"total-detection-updates":0,"total-updates":0,"current-active-flows":1,"total-active-flows":5,"total-idle-flows":4,"total-compressions":0,"total-compression-diff":0,"current-compression-diff":0,"global-alloc-count":0,"global-free-count":0,"global-alloc-bytes":0,"global-free-bytes":0,"total-events-serialized":51,"global_ts_usec":1657055653080000}
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
00655{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":79,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":6,"flow_packet_id":4,"flow_src_last_pkt_time":1657203798845000,"flow_dst_last_pkt_time":1657203798842000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":150,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":150,"pkt_l4_len":116,"thread_ts_usec":1657203798845000,"pkt":"eJS0JASgYDjgxTWgCABFAACInglAAH8GXsPAqAJkBT42WcF8AFBgG1uoBOCGaFAYAQSIqQAATk9TQQBgAQEAAAMBazDZfEJSRRQAAAAABYiCpXRH+WmBnnTxsTaTNZqejhNMSUMUAAAAANKFl0dRXc72tHtQFwKSnYJAcpIFTFVOEALhpIIAlg+MdKN9FpVUWsmF\/QhQ"}
|
||||
00916{"flow_event_id":7,"flow_event_name":"detected","thread_id":0,"packet_id":79,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":6,"flow_state":"info","flow_src_packets_processed":3,"flow_dst_packets_processed":1,"flow_first_seen":1657203798816000,"flow_src_last_pkt_time":1657203798845000,"flow_dst_last_pkt_time":1657203798842000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":96,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1657203798845000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.54.89","src_port":49532,"dst_port":80,"l4_proto":"tcp","ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00531{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":80,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":6,"flow_packet_id":5,"flow_src_last_pkt_time":1657203798845000,"flow_dst_last_pkt_time":1657203798871000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":60,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":60,"pkt_l4_len":20,"thread_ts_usec":1657203798871000,"pkt":"YDjgxTWgeJS0JASgCABFAAAo6YhAADcGW6QFPjZZwKgCZABQwXwE4IZoYBtcCFAQAW2miwAAAAAAAAAA"}
|
||||
00958{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":83,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":5,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1657055010698000,"flow_src_last_pkt_time":1657056295590000,"flow_dst_last_pkt_time":1657056295616000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":16,"flow_src_tot_l4_payload_len":100,"flow_dst_tot_l4_payload_len":16,"midstream":0,"thread_ts_usec":1657203798932000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":49758,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00958{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":83,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":5,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1657055010698000,"flow_src_last_pkt_time":1657056295590000,"flow_dst_last_pkt_time":1657056295616000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":16,"flow_src_tot_l4_payload_len":100,"flow_dst_tot_l4_payload_len":16,"midstream":0,"thread_ts_usec":1657203798932000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.53","src_port":49758,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"Unknown","proto_by_ip_id":0,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00809{"daemon_event_id":4,"daemon_event_name":"status","thread_id":0,"packet_id":89,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","version":"","ndpi_version":"","ndpi_api_version":0,"size_per_flow":1448,"packets-captured":89,"packets-processed":88,"pfring_active":false,"pfring_recv":0,"pfring_drop":0,"pfring_shunt":0,"total-skipped-flows":0,"total-l4-payload-len":734,"total-not-detected-flows":0,"total-guessed-flows":0,"total-detected-flows":6,"total-detection-updates":0,"total-updates":0,"current-active-flows":1,"total-active-flows":6,"total-idle-flows":5,"total-compressions":0,"total-compression-diff":0,"current-compression-diff":0,"global-alloc-count":0,"global-free-count":0,"global-alloc-bytes":0,"global-free-bytes":0,"total-events-serialized":62,"global_ts_usec":1657204596088000}
|
||||
00809{"daemon_event_id":4,"daemon_event_name":"status","thread_id":0,"packet_id":91,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","version":"","ndpi_version":"","ndpi_api_version":0,"size_per_flow":1448,"packets-captured":91,"packets-processed":90,"pfring_active":false,"pfring_recv":0,"pfring_drop":0,"pfring_shunt":0,"total-skipped-flows":0,"total-l4-payload-len":735,"total-not-detected-flows":0,"total-guessed-flows":0,"total-detected-flows":6,"total-detection-updates":0,"total-updates":0,"current-active-flows":1,"total-active-flows":6,"total-idle-flows":5,"total-compressions":0,"total-compression-diff":0,"current-compression-diff":0,"global-alloc-count":0,"global-free-count":0,"global-alloc-bytes":0,"global-free-bytes":0,"total-events-serialized":63,"global_ts_usec":1657475015947000}
|
||||
00769{"flow_event_id":1,"flow_event_name":"new","thread_id":0,"packet_id":91,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":7,"flow_state":"info","flow_src_packets_processed":1,"flow_dst_packets_processed":0,"flow_first_seen":1657475015947000,"flow_src_last_pkt_time":1657475015947000,"flow_dst_last_pkt_time":1657475015947000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":0,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":0,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1657475015947000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.54.29","src_port":58412,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5}
|
||||
|
|
@ -94,10 +94,10 @@
|
|||
00537{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":129,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":10,"flow_packet_id":2,"flow_src_last_pkt_time":1657715755306000,"flow_dst_last_pkt_time":1657715755336000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":62,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":62,"pkt_l4_len":28,"thread_ts_usec":1657715755336000,"pkt":"YDjgxTWgeJS0JASgCABFAAAwAABAADcGRfsFPjWDwKgCZABQ9RVBYkV5RDQ0kXASBbSLjQAAAgQFrAEDAwI="}
|
||||
00526{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":130,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":10,"flow_packet_id":3,"flow_src_last_pkt_time":1657715755343000,"flow_dst_last_pkt_time":1657715755336000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":54,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":54,"pkt_l4_len":20,"thread_ts_usec":1657715755343000,"pkt":"eJS0JASgYDjgxTWgCABFAAAo7PxAAH8GEQbAqAJkBT41g\/UVAFBENDSRQWJFelAQAQS7+wAA"}
|
||||
00658{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":131,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":10,"flow_packet_id":4,"flow_src_last_pkt_time":1657715755343000,"flow_dst_last_pkt_time":1657715755336000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":150,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":150,"pkt_l4_len":116,"thread_ts_usec":1657715755343000,"pkt":"eJS0JASgYDjgxTWgCABFAACI7P1AAH8GEKXAqAJkBT41g\/UVAFBENDSRQWJFelAYAQQUIwAATk9TQQBgAQEAAAMBQxcVb0JSRRQAAAAABYiCpXRH+WmBnnTxsTaTNZqejhNMSUMUljUok9KFl0dRXc72tHtQFwKSnYJAcpIFTFVOEALxWv4Alg+MdKN9FpVUWsmF\/QhQ"}
|
||||
00919{"flow_event_id":7,"flow_event_name":"detected","thread_id":0,"packet_id":131,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":10,"flow_state":"info","flow_src_packets_processed":3,"flow_dst_packets_processed":1,"flow_first_seen":1657715755306000,"flow_src_last_pkt_time":1657715755343000,"flow_dst_last_pkt_time":1657715755336000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":96,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1657715755343000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.131","src_port":62741,"dst_port":80,"l4_proto":"tcp","ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00919{"flow_event_id":7,"flow_event_name":"detected","thread_id":0,"packet_id":131,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":10,"flow_state":"info","flow_src_packets_processed":3,"flow_dst_packets_processed":1,"flow_first_seen":1657715755306000,"flow_src_last_pkt_time":1657715755343000,"flow_dst_last_pkt_time":1657715755336000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":0,"flow_src_tot_l4_payload_len":96,"flow_dst_tot_l4_payload_len":0,"midstream":0,"thread_ts_usec":1657715755343000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.131","src_port":62741,"dst_port":80,"l4_proto":"tcp","ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"Unknown","proto_by_ip_id":0,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00533{"packet_event_id":2,"packet_event_name":"packet-flow","thread_id":0,"packet_id":132,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":10,"flow_packet_id":5,"flow_src_last_pkt_time":1657715755343000,"flow_dst_last_pkt_time":1657715755373000,"flow_idle_time":7580000000,"pkt_datalink":1,"pkt_caplen":60,"pkt_type":2048,"pkt_l3_offset":14,"pkt_l4_offset":34,"pkt_len":60,"pkt_l4_len":20,"thread_ts_usec":1657715755373000,"pkt":"YDjgxTWgeJS0JASgCABFAAAo+DZAADcGTcwFPjWDwKgCZABQ9RVBYkV6RDQ08VAQAW27MgAAAAAAAAAA"}
|
||||
00959{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":137,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":9,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1657612856239000,"flow_src_last_pkt_time":1657613709852000,"flow_dst_last_pkt_time":1657613709881000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":16,"flow_src_tot_l4_payload_len":100,"flow_dst_tot_l4_payload_len":16,"midstream":0,"thread_ts_usec":1657715755532000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.54.29","src_port":57727,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00961{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":142,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":10,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1657715755306000,"flow_src_last_pkt_time":1657716324963000,"flow_dst_last_pkt_time":1657716324992000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":86,"flow_src_tot_l4_payload_len":99,"flow_dst_tot_l4_payload_len":102,"midstream":0,"thread_ts_usec":1657716324992000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.131","src_port":62741,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"AVAST","proto_by_ip_id":307,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00961{"flow_event_id":3,"flow_event_name":"idle","thread_id":0,"packet_id":142,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","flow_id":10,"flow_state":"finished","flow_src_packets_processed":8,"flow_dst_packets_processed":7,"flow_first_seen":1657715755306000,"flow_src_last_pkt_time":1657716324963000,"flow_dst_last_pkt_time":1657716324992000,"flow_idle_time":7580000000,"flow_src_min_l4_payload_len":0,"flow_dst_min_l4_payload_len":0,"flow_src_max_l4_payload_len":96,"flow_dst_max_l4_payload_len":86,"flow_src_tot_l4_payload_len":99,"flow_dst_tot_l4_payload_len":102,"midstream":0,"thread_ts_usec":1657716324992000,"l3_proto":"ip4","src_ip":"192.168.2.100","dst_ip":"5.62.53.131","src_port":62741,"dst_port":80,"l4_proto":"tcp","flow_datalink":1,"flow_max_packets":5,"ndpi": {"confidence": {"6":"DPI"},"proto":"AVAST","proto_id":"307","proto_by_ip":"Unknown","proto_by_ip_id":0,"encrypted":1,"breed":"Safe","category_id":14,"category":"Network"}}
|
||||
00819{"daemon_event_id":3,"daemon_event_name":"shutdown","thread_id":0,"packet_id":142,"source":"cfgs\/default\/pcap\/avast.pcap","alias":"nDPId-test","version":"","ndpi_version":"","ndpi_api_version":0,"size_per_flow":1448,"packets-captured":142,"packets-processed":142,"pfring_active":false,"pfring_recv":0,"pfring_drop":0,"pfring_shunt":0,"total-skipped-flows":0,"total-l4-payload-len":1277,"total-not-detected-flows":0,"total-guessed-flows":0,"total-detected-flows":10,"total-detection-updates":0,"total-updates":0,"current-active-flows":0,"total-active-flows":10,"total-idle-flows":10,"total-compressions":0,"total-compression-diff":0,"current-compression-diff":0,"global-alloc-count":0,"global-free-count":0,"global-alloc-bytes":0,"global-free-bytes":0,"total-events-serialized":101,"global_ts_usec":1657716324992000}
|
||||
~~~~~~~~~~~~~~~~~~~~ SUMMARY ~~~~~~~~~~~~~~~~~~~~
|
||||
~~ packets captured/processed: 142/142
|
||||
|
|
@ -107,9 +107,9 @@
|
|||
~~ total active/idle flows...: 10/10
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8660466 bytes
|
||||
~~ total memory freed........: 8660466 bytes
|
||||
~~ total allocations/frees...: 140056/140056
|
||||
~~ total memory allocated....: 8691334 bytes
|
||||
~~ total memory freed........: 8691334 bytes
|
||||
~~ total allocations/frees...: 140784/140784
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 527 chars
|
||||
~~ json message max len.......: 966 chars
|
||||
|
|
|
|||
|
|
@ -224,9 +224,9 @@
|
|||
~~ total active/idle flows...: 39/39
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8709732 bytes
|
||||
~~ total memory freed........: 8709732 bytes
|
||||
~~ total allocations/frees...: 140329/140329
|
||||
~~ total memory allocated....: 8739643 bytes
|
||||
~~ total memory freed........: 8739643 bytes
|
||||
~~ total allocations/frees...: 141028/141028
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 574 chars
|
||||
~~ json message max len.......: 993 chars
|
||||
|
|
|
|||
|
|
@ -63,9 +63,9 @@
|
|||
~~ total active/idle flows...: 10/10
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8636565 bytes
|
||||
~~ total memory freed........: 8636565 bytes
|
||||
~~ total allocations/frees...: 139927/139927
|
||||
~~ total memory allocated....: 8667433 bytes
|
||||
~~ total memory freed........: 8667433 bytes
|
||||
~~ total allocations/frees...: 140655/140655
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 533 chars
|
||||
~~ json message max len.......: 979 chars
|
||||
|
|
|
|||
|
|
@ -45,9 +45,9 @@
|
|||
~~ total active/idle flows...: 3/3
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8629990 bytes
|
||||
~~ total memory freed........: 8629990 bytes
|
||||
~~ total allocations/frees...: 140208/140208
|
||||
~~ total memory allocated....: 8661089 bytes
|
||||
~~ total memory freed........: 8661089 bytes
|
||||
~~ total allocations/frees...: 140943/140943
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 594 chars
|
||||
~~ json message max len.......: 2689 chars
|
||||
|
|
|
|||
|
|
@ -200,9 +200,9 @@
|
|||
~~ total active/idle flows...: 0/0
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8611208 bytes
|
||||
~~ total memory freed........: 8611208 bytes
|
||||
~~ total allocations/frees...: 139784/139784
|
||||
~~ total memory allocated....: 8642406 bytes
|
||||
~~ total memory freed........: 8642406 bytes
|
||||
~~ total allocations/frees...: 140522/140522
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 320 chars
|
||||
~~ json message max len.......: 2335 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8615124 bytes
|
||||
~~ total memory freed........: 8615124 bytes
|
||||
~~ total allocations/frees...: 139846/139846
|
||||
~~ total memory allocated....: 8646289 bytes
|
||||
~~ total memory freed........: 8646289 bytes
|
||||
~~ total allocations/frees...: 140583/140583
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 539 chars
|
||||
~~ json message max len.......: 2196 chars
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8653986 bytes
|
||||
~~ total memory freed........: 8653986 bytes
|
||||
~~ total allocations/frees...: 139839/139839
|
||||
~~ total memory allocated....: 8685184 bytes
|
||||
~~ total memory freed........: 8685184 bytes
|
||||
~~ total allocations/frees...: 140577/140577
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 528 chars
|
||||
~~ json message max len.......: 2136 chars
|
||||
|
|
|
|||
|
|
@ -36,9 +36,9 @@
|
|||
~~ total active/idle flows...: 3/3
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8622544 bytes
|
||||
~~ total memory freed........: 8622544 bytes
|
||||
~~ total allocations/frees...: 139886/139886
|
||||
~~ total memory allocated....: 8653643 bytes
|
||||
~~ total memory freed........: 8653643 bytes
|
||||
~~ total allocations/frees...: 140621/140621
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 527 chars
|
||||
~~ json message max len.......: 2227 chars
|
||||
|
|
|
|||
|
|
@ -32,9 +32,9 @@
|
|||
~~ total active/idle flows...: 4/4
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8621403 bytes
|
||||
~~ total memory freed........: 8621403 bytes
|
||||
~~ total allocations/frees...: 139843/139843
|
||||
~~ total memory allocated....: 8652469 bytes
|
||||
~~ total memory freed........: 8652469 bytes
|
||||
~~ total allocations/frees...: 140577/140577
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 545 chars
|
||||
~~ json message max len.......: 974 chars
|
||||
|
|
|
|||
|
|
@ -63,9 +63,9 @@
|
|||
~~ total active/idle flows...: 6/6
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8641363 bytes
|
||||
~~ total memory freed........: 8641363 bytes
|
||||
~~ total allocations/frees...: 140385/140385
|
||||
~~ total memory allocated....: 8672363 bytes
|
||||
~~ total memory freed........: 8672363 bytes
|
||||
~~ total allocations/frees...: 141117/141117
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 574 chars
|
||||
~~ json message max len.......: 2493 chars
|
||||
|
|
|
|||
|
|
@ -170,9 +170,9 @@
|
|||
~~ total active/idle flows...: 24/24
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8725049 bytes
|
||||
~~ total memory freed........: 8725049 bytes
|
||||
~~ total allocations/frees...: 140415/140415
|
||||
~~ total memory allocated....: 8755455 bytes
|
||||
~~ total memory freed........: 8755455 bytes
|
||||
~~ total allocations/frees...: 141129/141129
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 569 chars
|
||||
~~ json message max len.......: 2398 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8618699 bytes
|
||||
~~ total memory freed........: 8618699 bytes
|
||||
~~ total allocations/frees...: 139899/139899
|
||||
~~ total memory allocated....: 8649864 bytes
|
||||
~~ total memory freed........: 8649864 bytes
|
||||
~~ total allocations/frees...: 140636/140636
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 543 chars
|
||||
~~ json message max len.......: 2319 chars
|
||||
|
|
|
|||
|
|
@ -27,9 +27,9 @@
|
|||
~~ total active/idle flows...: 2/2
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8618834 bytes
|
||||
~~ total memory freed........: 8618834 bytes
|
||||
~~ total allocations/frees...: 139900/139900
|
||||
~~ total memory allocated....: 8649966 bytes
|
||||
~~ total memory freed........: 8649966 bytes
|
||||
~~ total allocations/frees...: 140636/140636
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 548 chars
|
||||
~~ json message max len.......: 2377 chars
|
||||
|
|
|
|||
|
|
@ -49,9 +49,9 @@
|
|||
~~ total active/idle flows...: 10/10
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8636188 bytes
|
||||
~~ total memory freed........: 8636188 bytes
|
||||
~~ total allocations/frees...: 139914/139914
|
||||
~~ total memory allocated....: 8667056 bytes
|
||||
~~ total memory freed........: 8667056 bytes
|
||||
~~ total allocations/frees...: 140642/140642
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 517 chars
|
||||
~~ json message max len.......: 970 chars
|
||||
|
|
|
|||
|
|
@ -85,9 +85,9 @@
|
|||
~~ total active/idle flows...: 9/9
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8641596 bytes
|
||||
~~ total memory freed........: 8641596 bytes
|
||||
~~ total allocations/frees...: 140106/140106
|
||||
~~ total memory allocated....: 8672497 bytes
|
||||
~~ total memory freed........: 8672497 bytes
|
||||
~~ total allocations/frees...: 140835/140835
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 509 chars
|
||||
~~ json message max len.......: 2216 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8625582 bytes
|
||||
~~ total memory freed........: 8625582 bytes
|
||||
~~ total allocations/frees...: 140205/140205
|
||||
~~ total memory allocated....: 8656747 bytes
|
||||
~~ total memory freed........: 8656747 bytes
|
||||
~~ total allocations/frees...: 140942/140942
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 554 chars
|
||||
~~ json message max len.......: 2300 chars
|
||||
|
|
|
|||
|
|
@ -14,9 +14,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8613707 bytes
|
||||
~~ total memory freed........: 8613707 bytes
|
||||
~~ total allocations/frees...: 139797/139797
|
||||
~~ total memory allocated....: 8644872 bytes
|
||||
~~ total memory freed........: 8644872 bytes
|
||||
~~ total allocations/frees...: 140534/140534
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 528 chars
|
||||
~~ json message max len.......: 1069 chars
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8614715 bytes
|
||||
~~ total memory freed........: 8614715 bytes
|
||||
~~ total allocations/frees...: 139826/139826
|
||||
~~ total memory allocated....: 8645880 bytes
|
||||
~~ total memory freed........: 8645880 bytes
|
||||
~~ total allocations/frees...: 140563/140563
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 533 chars
|
||||
~~ json message max len.......: 1354 chars
|
||||
|
|
|
|||
|
|
@ -14,9 +14,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8613674 bytes
|
||||
~~ total memory freed........: 8613674 bytes
|
||||
~~ total allocations/frees...: 139796/139796
|
||||
~~ total memory allocated....: 8644872 bytes
|
||||
~~ total memory freed........: 8644872 bytes
|
||||
~~ total allocations/frees...: 140534/140534
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 591 chars
|
||||
~~ json message max len.......: 978 chars
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@
|
|||
~~ total active/idle flows...: 2/2
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8616262 bytes
|
||||
~~ total memory freed........: 8616262 bytes
|
||||
~~ total allocations/frees...: 139812/139812
|
||||
~~ total memory allocated....: 8647394 bytes
|
||||
~~ total memory freed........: 8647394 bytes
|
||||
~~ total allocations/frees...: 140548/140548
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 580 chars
|
||||
~~ json message max len.......: 985 chars
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8663284 bytes
|
||||
~~ total memory freed........: 8663284 bytes
|
||||
~~ total allocations/frees...: 139865/139865
|
||||
~~ total memory allocated....: 8694482 bytes
|
||||
~~ total memory freed........: 8694482 bytes
|
||||
~~ total allocations/frees...: 140603/140603
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 561 chars
|
||||
~~ json message max len.......: 2755 chars
|
||||
|
|
|
|||
|
|
@ -42,9 +42,9 @@
|
|||
~~ total active/idle flows...: 8/8
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8631192 bytes
|
||||
~~ total memory freed........: 8631192 bytes
|
||||
~~ total allocations/frees...: 139888/139888
|
||||
~~ total memory allocated....: 8662126 bytes
|
||||
~~ total memory freed........: 8662126 bytes
|
||||
~~ total allocations/frees...: 140618/140618
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 578 chars
|
||||
~~ json message max len.......: 983 chars
|
||||
|
|
|
|||
|
|
@ -76,9 +76,9 @@
|
|||
~~ total active/idle flows...: 5/5
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8634977 bytes
|
||||
~~ total memory freed........: 8634977 bytes
|
||||
~~ total allocations/frees...: 140238/140238
|
||||
~~ total memory allocated....: 8666043 bytes
|
||||
~~ total memory freed........: 8666043 bytes
|
||||
~~ total allocations/frees...: 140972/140972
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 297 chars
|
||||
~~ json message max len.......: 2258 chars
|
||||
|
|
|
|||
|
|
@ -37,9 +37,9 @@
|
|||
~~ total active/idle flows...: 0/0
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8611208 bytes
|
||||
~~ total memory freed........: 8611208 bytes
|
||||
~~ total allocations/frees...: 139784/139784
|
||||
~~ total memory allocated....: 8642406 bytes
|
||||
~~ total memory freed........: 8642406 bytes
|
||||
~~ total allocations/frees...: 140522/140522
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 306 chars
|
||||
~~ json message max len.......: 821 chars
|
||||
|
|
|
|||
|
|
@ -32,9 +32,9 @@
|
|||
~~ total active/idle flows...: 3/3
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8623279 bytes
|
||||
~~ total memory freed........: 8623279 bytes
|
||||
~~ total allocations/frees...: 139842/139842
|
||||
~~ total memory allocated....: 8654378 bytes
|
||||
~~ total memory freed........: 8654378 bytes
|
||||
~~ total allocations/frees...: 140577/140577
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 548 chars
|
||||
~~ json message max len.......: 979 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8614804 bytes
|
||||
~~ total memory freed........: 8614804 bytes
|
||||
~~ total allocations/frees...: 139835/139835
|
||||
~~ total memory allocated....: 8645969 bytes
|
||||
~~ total memory freed........: 8645969 bytes
|
||||
~~ total allocations/frees...: 140572/140572
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 542 chars
|
||||
~~ json message max len.......: 2108 chars
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8616515 bytes
|
||||
~~ total memory freed........: 8616515 bytes
|
||||
~~ total allocations/frees...: 139894/139894
|
||||
~~ total memory allocated....: 8647680 bytes
|
||||
~~ total memory freed........: 8647680 bytes
|
||||
~~ total allocations/frees...: 140631/140631
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 550 chars
|
||||
~~ json message max len.......: 2133 chars
|
||||
|
|
|
|||
|
|
@ -63,9 +63,9 @@
|
|||
~~ total active/idle flows...: 6/6
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8893875 bytes
|
||||
~~ total memory freed........: 8893875 bytes
|
||||
~~ total allocations/frees...: 140036/140036
|
||||
~~ total memory allocated....: 8925073 bytes
|
||||
~~ total memory freed........: 8925073 bytes
|
||||
~~ total allocations/frees...: 140774/140774
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 544 chars
|
||||
~~ json message max len.......: 1409 chars
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8613793 bytes
|
||||
~~ total memory freed........: 8613793 bytes
|
||||
~~ total allocations/frees...: 139800/139800
|
||||
~~ total memory allocated....: 8644958 bytes
|
||||
~~ total memory freed........: 8644958 bytes
|
||||
~~ total allocations/frees...: 140537/140537
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 561 chars
|
||||
~~ json message max len.......: 970 chars
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@
|
|||
~~ total active/idle flows...: 1/1
|
||||
~~ total timeout flows.......: 0
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8616618 bytes
|
||||
~~ total memory freed........: 8616618 bytes
|
||||
~~ total allocations/frees...: 139897/139897
|
||||
~~ total memory allocated....: 8647783 bytes
|
||||
~~ total memory freed........: 8647783 bytes
|
||||
~~ total allocations/frees...: 140634/140634
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 500 chars
|
||||
~~ json message max len.......: 2182 chars
|
||||
|
|
|
|||
|
|
@ -78,9 +78,9 @@
|
|||
~~ total active/idle flows...: 9/9
|
||||
~~ total timeout flows.......: 3
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ total memory allocated....: 8658005 bytes
|
||||
~~ total memory freed........: 8658005 bytes
|
||||
~~ total allocations/frees...: 139990/139990
|
||||
~~ total memory allocated....: 8689137 bytes
|
||||
~~ total memory freed........: 8689137 bytes
|
||||
~~ total allocations/frees...: 140726/140726
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json message min len.......: 538 chars
|
||||
~~ json message max len.......: 1601 chars
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue