mirror of
https://github.com/optim-enterprises-bv/nDPId.git
synced 2025-10-30 01:42:22 +00:00
Replaced ambiguous naming of "JSON string" to more accurate "JSON message". #2
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
This commit is contained in:
@@ -556,7 +556,7 @@ static int mainloop(void)
|
||||
enum nDPIsrvd_parse_return parse_ret = nDPIsrvd_parse_all(sock);
|
||||
if (parse_ret != PARSE_NEED_MORE_DATA)
|
||||
{
|
||||
printf("Could not parse json string: %s\n", nDPIsrvd_enum_to_string(parse_ret));
|
||||
printf("Could not parse json message: %s\n", nDPIsrvd_enum_to_string(parse_ret));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -775,7 +775,7 @@ static enum nDPIsrvd_callback_return captured_json_callback(struct nDPIsrvd_sock
|
||||
{
|
||||
logger(1, "%s", "No packet data available.");
|
||||
logger(1,
|
||||
"JSON String: '%.*s'",
|
||||
"JSON message: '%.*s'",
|
||||
nDPIsrvd_json_buffer_length(sock),
|
||||
nDPIsrvd_json_buffer_string(sock));
|
||||
return CALLBACK_OK;
|
||||
@@ -828,7 +828,7 @@ static enum nDPIsrvd_callback_return captured_json_callback(struct nDPIsrvd_sock
|
||||
if (pkt == NULL)
|
||||
{
|
||||
logger(1, "%s", "No packet data available.");
|
||||
logger(1, "JSON String: '%.*s'", nDPIsrvd_json_buffer_length(sock), nDPIsrvd_json_buffer_string(sock));
|
||||
logger(1, "JSON message: '%.*s'", nDPIsrvd_json_buffer_length(sock), nDPIsrvd_json_buffer_string(sock));
|
||||
return CALLBACK_OK;
|
||||
}
|
||||
|
||||
@@ -1300,7 +1300,7 @@ static int mainloop(void)
|
||||
enum nDPIsrvd_parse_return parse_ret = nDPIsrvd_parse_all(ndpisrvd_socket);
|
||||
if (parse_ret != PARSE_NEED_MORE_DATA)
|
||||
{
|
||||
logger(1, "Could not parse json string: %s", nDPIsrvd_enum_to_string(parse_ret));
|
||||
logger(1, "Could not parse json message: %s", nDPIsrvd_enum_to_string(parse_ret));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -620,7 +620,7 @@ int main(int argc, char ** argv)
|
||||
if (parse_ret != PARSE_NEED_MORE_DATA)
|
||||
{
|
||||
syslog(LOG_DAEMON | LOG_ERR,
|
||||
"Could not parse json string %s: %.*s\n",
|
||||
"Could not parse JSON message %s: %.*s\n",
|
||||
nDPIsrvd_enum_to_string(parse_ret),
|
||||
nDPIsrvd_json_buffer_length(sock),
|
||||
nDPIsrvd_json_buffer_string(sock));
|
||||
|
||||
@@ -253,7 +253,7 @@ int main(int argc, char ** argv)
|
||||
enum nDPIsrvd_parse_return parse_ret = nDPIsrvd_parse_all(sock);
|
||||
if (parse_ret != PARSE_NEED_MORE_DATA)
|
||||
{
|
||||
printf("Could not parse json string %s: %.*s\n",
|
||||
printf("Could not parse JSON message %s: %.*s\n",
|
||||
nDPIsrvd_enum_to_string(parse_ret),
|
||||
nDPIsrvd_json_buffer_length(sock),
|
||||
nDPIsrvd_json_buffer_string(sock));
|
||||
|
||||
@@ -1852,9 +1852,9 @@ int main(int argc, char ** argv)
|
||||
total_free_count);
|
||||
|
||||
printf(
|
||||
"~~ json string min len.......: %llu chars\n"
|
||||
"~~ json string max len.......: %llu chars\n"
|
||||
"~~ json string avg len.......: %llu chars\n",
|
||||
"~~ json message min len.......: %llu chars\n"
|
||||
"~~ json message max len.......: %llu chars\n"
|
||||
"~~ json message avg len.......: %llu chars\n",
|
||||
distributor_return.stats.json_message_len_min,
|
||||
distributor_return.stats.json_message_len_max,
|
||||
(unsigned long long int)distributor_return.stats.json_message_len_avg);
|
||||
|
||||
2
nDPId.c
2
nDPId.c
@@ -3111,7 +3111,7 @@ static uint32_t calculate_ndpi_flow_struct_hash(struct ndpi_flow_struct const *
|
||||
{
|
||||
/*
|
||||
* This is a kludge, but necessary for now as I do not want to spam nDPIsrvd and clients
|
||||
* with the same detection json string over and over again.
|
||||
* with the same detection JSON message over and over again.
|
||||
* So we are building a hash over the more "stable" parts of the ndpi flow struct.
|
||||
* Stable in terms of they should only change if the detection changes for whatever reason.
|
||||
* At the time of writing, nDPI has no API function to check if the detection changed
|
||||
|
||||
@@ -66,6 +66,6 @@
|
||||
~~ total memory freed........: 11506748 bytes
|
||||
~~ total allocations/frees...: 216812/216812
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 523 chars
|
||||
~~ json string max len.......: 1419 chars
|
||||
~~ json string avg len.......: 970 chars
|
||||
~~ json message min len.......: 523 chars
|
||||
~~ json message max len.......: 1419 chars
|
||||
~~ json message avg len.......: 970 chars
|
||||
|
||||
@@ -691,6 +691,6 @@
|
||||
~~ total memory freed........: 12606117 bytes
|
||||
~~ total allocations/frees...: 219426/219426
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 298 chars
|
||||
~~ json string max len.......: 2504 chars
|
||||
~~ json string avg len.......: 1401 chars
|
||||
~~ json message min len.......: 298 chars
|
||||
~~ json message max len.......: 2504 chars
|
||||
~~ json message avg len.......: 1401 chars
|
||||
|
||||
@@ -1313,6 +1313,6 @@
|
||||
~~ total memory freed........: 12023935 bytes
|
||||
~~ total allocations/frees...: 221280/221280
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 529 chars
|
||||
~~ json string max len.......: 11852 chars
|
||||
~~ json string avg len.......: 6190 chars
|
||||
~~ json message min len.......: 529 chars
|
||||
~~ json message max len.......: 11852 chars
|
||||
~~ json message avg len.......: 6190 chars
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
~~ total memory freed........: 11477449 bytes
|
||||
~~ total allocations/frees...: 216627/216627
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 571 chars
|
||||
~~ json string max len.......: 2505 chars
|
||||
~~ json string avg len.......: 1477 chars
|
||||
~~ json message min len.......: 571 chars
|
||||
~~ json message max len.......: 2505 chars
|
||||
~~ json message avg len.......: 1477 chars
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
~~ total memory freed........: 11485500 bytes
|
||||
~~ total allocations/frees...: 216742/216742
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 546 chars
|
||||
~~ json string max len.......: 2167 chars
|
||||
~~ json string avg len.......: 1302 chars
|
||||
~~ json message min len.......: 546 chars
|
||||
~~ json message max len.......: 2167 chars
|
||||
~~ json message avg len.......: 1302 chars
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
~~ total memory freed........: 11501736 bytes
|
||||
~~ total allocations/frees...: 217301/217301
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 549 chars
|
||||
~~ json string max len.......: 2182 chars
|
||||
~~ json string avg len.......: 1313 chars
|
||||
~~ json message min len.......: 549 chars
|
||||
~~ json message max len.......: 2182 chars
|
||||
~~ json message avg len.......: 1313 chars
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
~~ total memory freed........: 11487885 bytes
|
||||
~~ total allocations/frees...: 216705/216705
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 546 chars
|
||||
~~ json string max len.......: 2459 chars
|
||||
~~ json string avg len.......: 1491 chars
|
||||
~~ json message min len.......: 546 chars
|
||||
~~ json message max len.......: 2459 chars
|
||||
~~ json message avg len.......: 1491 chars
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
~~ total memory freed........: 11478754 bytes
|
||||
~~ total allocations/frees...: 216672/216672
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 546 chars
|
||||
~~ json string max len.......: 2200 chars
|
||||
~~ json string avg len.......: 1288 chars
|
||||
~~ json message min len.......: 546 chars
|
||||
~~ json message max len.......: 2200 chars
|
||||
~~ json message avg len.......: 1288 chars
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
~~ total memory freed........: 11483558 bytes
|
||||
~~ total allocations/frees...: 216674/216674
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 548 chars
|
||||
~~ json string max len.......: 2164 chars
|
||||
~~ json string avg len.......: 1302 chars
|
||||
~~ json message min len.......: 548 chars
|
||||
~~ json message max len.......: 2164 chars
|
||||
~~ json message avg len.......: 1302 chars
|
||||
|
||||
@@ -27,6 +27,6 @@
|
||||
~~ total memory freed........: 11473240 bytes
|
||||
~~ total allocations/frees...: 216614/216614
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 303 chars
|
||||
~~ json string max len.......: 637 chars
|
||||
~~ json string avg len.......: 469 chars
|
||||
~~ json message min len.......: 303 chars
|
||||
~~ json message max len.......: 637 chars
|
||||
~~ json message avg len.......: 469 chars
|
||||
|
||||
@@ -20,6 +20,6 @@
|
||||
~~ total memory freed........: 11475488 bytes
|
||||
~~ total allocations/frees...: 216629/216629
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 571 chars
|
||||
~~ json string max len.......: 2494 chars
|
||||
~~ json string avg len.......: 1433 chars
|
||||
~~ json message min len.......: 571 chars
|
||||
~~ json message max len.......: 2494 chars
|
||||
~~ json message avg len.......: 1433 chars
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
~~ total memory freed........: 11479055 bytes
|
||||
~~ total allocations/frees...: 216752/216752
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 571 chars
|
||||
~~ json string max len.......: 2020 chars
|
||||
~~ json string avg len.......: 1255 chars
|
||||
~~ json message min len.......: 571 chars
|
||||
~~ json message max len.......: 2020 chars
|
||||
~~ json message avg len.......: 1255 chars
|
||||
|
||||
@@ -21,6 +21,6 @@
|
||||
~~ total memory freed........: 11477562 bytes
|
||||
~~ total allocations/frees...: 216638/216638
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 571 chars
|
||||
~~ json string max len.......: 998 chars
|
||||
~~ json string avg len.......: 780 chars
|
||||
~~ json message min len.......: 571 chars
|
||||
~~ json message max len.......: 998 chars
|
||||
~~ json message avg len.......: 780 chars
|
||||
|
||||
@@ -21,6 +21,6 @@
|
||||
~~ total memory freed........: 11475778 bytes
|
||||
~~ total allocations/frees...: 216639/216639
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 529 chars
|
||||
~~ json string max len.......: 980 chars
|
||||
~~ json string avg len.......: 743 chars
|
||||
~~ json message min len.......: 529 chars
|
||||
~~ json message max len.......: 980 chars
|
||||
~~ json message avg len.......: 743 chars
|
||||
|
||||
@@ -19,6 +19,6 @@
|
||||
~~ total memory freed........: 11475401 bytes
|
||||
~~ total allocations/frees...: 216626/216626
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 301 chars
|
||||
~~ json string max len.......: 965 chars
|
||||
~~ json string avg len.......: 616 chars
|
||||
~~ json message min len.......: 301 chars
|
||||
~~ json message max len.......: 965 chars
|
||||
~~ json message avg len.......: 616 chars
|
||||
|
||||
@@ -279,6 +279,6 @@
|
||||
~~ total memory freed........: 11545254 bytes
|
||||
~~ total allocations/frees...: 217165/217165
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 525 chars
|
||||
~~ json string max len.......: 1206 chars
|
||||
~~ json string avg len.......: 865 chars
|
||||
~~ json message min len.......: 525 chars
|
||||
~~ json message max len.......: 1206 chars
|
||||
~~ json message avg len.......: 865 chars
|
||||
|
||||
@@ -62,6 +62,6 @@
|
||||
~~ total memory freed........: 11528908 bytes
|
||||
~~ total allocations/frees...: 218221/218221
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 589 chars
|
||||
~~ json string max len.......: 2232 chars
|
||||
~~ json string avg len.......: 1409 chars
|
||||
~~ json message min len.......: 589 chars
|
||||
~~ json message max len.......: 2232 chars
|
||||
~~ json message avg len.......: 1409 chars
|
||||
|
||||
@@ -27,6 +27,6 @@
|
||||
~~ total memory freed........: 11477939 bytes
|
||||
~~ total allocations/frees...: 216651/216651
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 529 chars
|
||||
~~ json string max len.......: 1103 chars
|
||||
~~ json string avg len.......: 813 chars
|
||||
~~ json message min len.......: 529 chars
|
||||
~~ json message max len.......: 1103 chars
|
||||
~~ json message avg len.......: 813 chars
|
||||
|
||||
@@ -281,6 +281,6 @@
|
||||
~~ total memory freed........: 11692590 bytes
|
||||
~~ total allocations/frees...: 217608/217608
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 544 chars
|
||||
~~ json string max len.......: 2375 chars
|
||||
~~ json string avg len.......: 1459 chars
|
||||
~~ json message min len.......: 544 chars
|
||||
~~ json message max len.......: 2375 chars
|
||||
~~ json message avg len.......: 1459 chars
|
||||
|
||||
@@ -154,6 +154,6 @@
|
||||
~~ total memory freed........: 11633958 bytes
|
||||
~~ total allocations/frees...: 220070/220070
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 542 chars
|
||||
~~ json string max len.......: 2713 chars
|
||||
~~ json string avg len.......: 1627 chars
|
||||
~~ json message min len.......: 542 chars
|
||||
~~ json message max len.......: 2713 chars
|
||||
~~ json message avg len.......: 1627 chars
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
~~ total memory freed........: 11475401 bytes
|
||||
~~ total allocations/frees...: 216626/216626
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 566 chars
|
||||
~~ json string max len.......: 1005 chars
|
||||
~~ json string avg len.......: 770 chars
|
||||
~~ json message min len.......: 566 chars
|
||||
~~ json message max len.......: 1005 chars
|
||||
~~ json message avg len.......: 770 chars
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
~~ total memory freed........: 11475401 bytes
|
||||
~~ total allocations/frees...: 216626/216626
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 566 chars
|
||||
~~ json string max len.......: 959 chars
|
||||
~~ json string avg len.......: 743 chars
|
||||
~~ json message min len.......: 566 chars
|
||||
~~ json message max len.......: 959 chars
|
||||
~~ json message avg len.......: 743 chars
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
~~ total memory freed........: 11475401 bytes
|
||||
~~ total allocations/frees...: 216626/216626
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 566 chars
|
||||
~~ json string max len.......: 959 chars
|
||||
~~ json string avg len.......: 743 chars
|
||||
~~ json message min len.......: 566 chars
|
||||
~~ json message max len.......: 959 chars
|
||||
~~ json message avg len.......: 743 chars
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
~~ total memory freed........: 11479479 bytes
|
||||
~~ total allocations/frees...: 216697/216697
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 532 chars
|
||||
~~ json string max len.......: 2004 chars
|
||||
~~ json string avg len.......: 1233 chars
|
||||
~~ json message min len.......: 532 chars
|
||||
~~ json message max len.......: 2004 chars
|
||||
~~ json message avg len.......: 1233 chars
|
||||
|
||||
@@ -18,6 +18,6 @@
|
||||
~~ total memory freed........: 11475402 bytes
|
||||
~~ total allocations/frees...: 216626/216626
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 568 chars
|
||||
~~ json string max len.......: 1093 chars
|
||||
~~ json string avg len.......: 816 chars
|
||||
~~ json message min len.......: 568 chars
|
||||
~~ json message max len.......: 1093 chars
|
||||
~~ json message avg len.......: 816 chars
|
||||
|
||||
@@ -3201,6 +3201,6 @@
|
||||
~~ total memory freed........: 13346688 bytes
|
||||
~~ total allocations/frees...: 230749/230749
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 573 chars
|
||||
~~ json string max len.......: 1782 chars
|
||||
~~ json string avg len.......: 1177 chars
|
||||
~~ json message min len.......: 573 chars
|
||||
~~ json message max len.......: 1782 chars
|
||||
~~ json message avg len.......: 1177 chars
|
||||
|
||||
@@ -85,6 +85,6 @@
|
||||
~~ total memory freed........: 11498669 bytes
|
||||
~~ total allocations/frees...: 216890/216890
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 553 chars
|
||||
~~ json string max len.......: 1507 chars
|
||||
~~ json string avg len.......: 1030 chars
|
||||
~~ json message min len.......: 553 chars
|
||||
~~ json message max len.......: 1507 chars
|
||||
~~ json message avg len.......: 1030 chars
|
||||
|
||||
@@ -5315,6 +5315,6 @@
|
||||
~~ total memory freed........: 13163189 bytes
|
||||
~~ total allocations/frees...: 233431/233431
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 550 chars
|
||||
~~ json string max len.......: 2577 chars
|
||||
~~ json string avg len.......: 1563 chars
|
||||
~~ json message min len.......: 550 chars
|
||||
~~ json message max len.......: 2577 chars
|
||||
~~ json message avg len.......: 1563 chars
|
||||
|
||||
@@ -48,6 +48,6 @@
|
||||
~~ total memory freed........: 11483508 bytes
|
||||
~~ total allocations/frees...: 216718/216718
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 539 chars
|
||||
~~ json string max len.......: 976 chars
|
||||
~~ json string avg len.......: 756 chars
|
||||
~~ json message min len.......: 539 chars
|
||||
~~ json message max len.......: 976 chars
|
||||
~~ json message avg len.......: 756 chars
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
~~ total memory freed........: 11476097 bytes
|
||||
~~ total allocations/frees...: 216650/216650
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 547 chars
|
||||
~~ json string max len.......: 1140 chars
|
||||
~~ json string avg len.......: 839 chars
|
||||
~~ json message min len.......: 547 chars
|
||||
~~ json message max len.......: 1140 chars
|
||||
~~ json message avg len.......: 839 chars
|
||||
|
||||
@@ -21,6 +21,6 @@
|
||||
~~ total memory freed........: 11475836 bytes
|
||||
~~ total allocations/frees...: 216641/216641
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 542 chars
|
||||
~~ json string max len.......: 974 chars
|
||||
~~ json string avg len.......: 751 chars
|
||||
~~ json message min len.......: 542 chars
|
||||
~~ json message max len.......: 974 chars
|
||||
~~ json message avg len.......: 751 chars
|
||||
|
||||
@@ -248,6 +248,6 @@
|
||||
~~ total memory freed........: 11540359 bytes
|
||||
~~ total allocations/frees...: 217303/217303
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 573 chars
|
||||
~~ json string max len.......: 2185 chars
|
||||
~~ json string avg len.......: 1379 chars
|
||||
~~ json message min len.......: 573 chars
|
||||
~~ json message max len.......: 2185 chars
|
||||
~~ json message avg len.......: 1379 chars
|
||||
|
||||
@@ -25,6 +25,6 @@
|
||||
~~ total memory freed........: 11477678 bytes
|
||||
~~ total allocations/frees...: 216642/216642
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 565 chars
|
||||
~~ json string max len.......: 993 chars
|
||||
~~ json string avg len.......: 778 chars
|
||||
~~ json message min len.......: 565 chars
|
||||
~~ json message max len.......: 993 chars
|
||||
~~ json message avg len.......: 778 chars
|
||||
|
||||
@@ -53,6 +53,6 @@
|
||||
~~ total memory freed........: 11478258 bytes
|
||||
~~ total allocations/frees...: 216662/216662
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 313 chars
|
||||
~~ json string max len.......: 1513 chars
|
||||
~~ json string avg len.......: 912 chars
|
||||
~~ json message min len.......: 313 chars
|
||||
~~ json message max len.......: 1513 chars
|
||||
~~ json message avg len.......: 912 chars
|
||||
|
||||
@@ -1434,6 +1434,6 @@
|
||||
~~ total memory freed........: 12601930 bytes
|
||||
~~ total allocations/frees...: 222340/222340
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 300 chars
|
||||
~~ json string max len.......: 2508 chars
|
||||
~~ json string avg len.......: 1404 chars
|
||||
~~ json message min len.......: 300 chars
|
||||
~~ json message max len.......: 2508 chars
|
||||
~~ json message avg len.......: 1404 chars
|
||||
|
||||
@@ -145,6 +145,6 @@
|
||||
~~ total memory freed........: 11542465 bytes
|
||||
~~ total allocations/frees...: 217019/217019
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 546 chars
|
||||
~~ json string max len.......: 985 chars
|
||||
~~ json string avg len.......: 764 chars
|
||||
~~ json message min len.......: 546 chars
|
||||
~~ json message max len.......: 985 chars
|
||||
~~ json message avg len.......: 764 chars
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
~~ total memory freed........: 11475401 bytes
|
||||
~~ total allocations/frees...: 216626/216626
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 530 chars
|
||||
~~ json string max len.......: 957 chars
|
||||
~~ json string avg len.......: 723 chars
|
||||
~~ json message min len.......: 530 chars
|
||||
~~ json message max len.......: 957 chars
|
||||
~~ json message avg len.......: 723 chars
|
||||
|
||||
@@ -38,6 +38,6 @@
|
||||
~~ total memory freed........: 11490420 bytes
|
||||
~~ total allocations/frees...: 216810/216810
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 544 chars
|
||||
~~ json string max len.......: 2138 chars
|
||||
~~ json string avg len.......: 1325 chars
|
||||
~~ json message min len.......: 544 chars
|
||||
~~ json message max len.......: 2138 chars
|
||||
~~ json message avg len.......: 1325 chars
|
||||
|
||||
@@ -447,6 +447,6 @@
|
||||
~~ total memory freed........: 11863690 bytes
|
||||
~~ total allocations/frees...: 218067/218067
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 546 chars
|
||||
~~ json string max len.......: 2635 chars
|
||||
~~ json string avg len.......: 1590 chars
|
||||
~~ json message min len.......: 546 chars
|
||||
~~ json message max len.......: 2635 chars
|
||||
~~ json message avg len.......: 1590 chars
|
||||
|
||||
@@ -469,6 +469,6 @@
|
||||
~~ total memory freed........: 11732257 bytes
|
||||
~~ total allocations/frees...: 218041/218041
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 527 chars
|
||||
~~ json string max len.......: 2780 chars
|
||||
~~ json string avg len.......: 1653 chars
|
||||
~~ json message min len.......: 527 chars
|
||||
~~ json message max len.......: 2780 chars
|
||||
~~ json message avg len.......: 1653 chars
|
||||
|
||||
@@ -77,6 +77,6 @@
|
||||
~~ total memory freed........: 11539697 bytes
|
||||
~~ total allocations/frees...: 216901/216901
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 532 chars
|
||||
~~ json string max len.......: 2677 chars
|
||||
~~ json string avg len.......: 1603 chars
|
||||
~~ json message min len.......: 532 chars
|
||||
~~ json message max len.......: 2677 chars
|
||||
~~ json message avg len.......: 1603 chars
|
||||
|
||||
@@ -111,6 +111,6 @@
|
||||
~~ total memory freed........: 11519158 bytes
|
||||
~~ total allocations/frees...: 216876/216876
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 527 chars
|
||||
~~ json string max len.......: 966 chars
|
||||
~~ json string avg len.......: 745 chars
|
||||
~~ json message min len.......: 527 chars
|
||||
~~ json message max len.......: 966 chars
|
||||
~~ json message avg len.......: 745 chars
|
||||
|
||||
@@ -228,6 +228,6 @@
|
||||
~~ total memory freed........: 11558621 bytes
|
||||
~~ total allocations/frees...: 217120/217120
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 574 chars
|
||||
~~ json string max len.......: 993 chars
|
||||
~~ json string avg len.......: 783 chars
|
||||
~~ json message min len.......: 574 chars
|
||||
~~ json message max len.......: 993 chars
|
||||
~~ json message avg len.......: 783 chars
|
||||
|
||||
@@ -67,6 +67,6 @@
|
||||
~~ total memory freed........: 11495227 bytes
|
||||
~~ total allocations/frees...: 216747/216747
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 533 chars
|
||||
~~ json string max len.......: 979 chars
|
||||
~~ json string avg len.......: 755 chars
|
||||
~~ json message min len.......: 533 chars
|
||||
~~ json message max len.......: 979 chars
|
||||
~~ json message avg len.......: 755 chars
|
||||
|
||||
@@ -49,6 +49,6 @@
|
||||
~~ total memory freed........: 11491094 bytes
|
||||
~~ total allocations/frees...: 217037/217037
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 576 chars
|
||||
~~ json string max len.......: 2600 chars
|
||||
~~ json string avg len.......: 1587 chars
|
||||
~~ json message min len.......: 576 chars
|
||||
~~ json message max len.......: 2600 chars
|
||||
~~ json message avg len.......: 1587 chars
|
||||
|
||||
@@ -204,6 +204,6 @@
|
||||
~~ total memory freed........: 11473240 bytes
|
||||
~~ total allocations/frees...: 216614/216614
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 320 chars
|
||||
~~ json string max len.......: 2335 chars
|
||||
~~ json string avg len.......: 1326 chars
|
||||
~~ json message min len.......: 320 chars
|
||||
~~ json message max len.......: 2335 chars
|
||||
~~ json message avg len.......: 1326 chars
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
~~ total memory freed........: 11492260 bytes
|
||||
~~ total allocations/frees...: 216665/216665
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 528 chars
|
||||
~~ json string max len.......: 2136 chars
|
||||
~~ json string avg len.......: 1301 chars
|
||||
~~ json message min len.......: 528 chars
|
||||
~~ json message max len.......: 2136 chars
|
||||
~~ json message avg len.......: 1301 chars
|
||||
|
||||
@@ -68,6 +68,6 @@
|
||||
~~ total memory freed........: 11504505 bytes
|
||||
~~ total allocations/frees...: 217317/217317
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 568 chars
|
||||
~~ json string max len.......: 2493 chars
|
||||
~~ json string avg len.......: 1529 chars
|
||||
~~ json message min len.......: 568 chars
|
||||
~~ json message max len.......: 2493 chars
|
||||
~~ json message avg len.......: 1529 chars
|
||||
|
||||
@@ -174,6 +174,6 @@
|
||||
~~ total memory freed........: 11578135 bytes
|
||||
~~ total allocations/frees...: 217199/217199
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 569 chars
|
||||
~~ json string max len.......: 2398 chars
|
||||
~~ json string avg len.......: 1482 chars
|
||||
~~ json message min len.......: 569 chars
|
||||
~~ json message max len.......: 2398 chars
|
||||
~~ json message avg len.......: 1482 chars
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
~~ total memory freed........: 11480320 bytes
|
||||
~~ total allocations/frees...: 216726/216726
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 543 chars
|
||||
~~ json string max len.......: 2336 chars
|
||||
~~ json string avg len.......: 1359 chars
|
||||
~~ json message min len.......: 543 chars
|
||||
~~ json message max len.......: 2336 chars
|
||||
~~ json message avg len.......: 1359 chars
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
~~ total memory freed........: 11477894 bytes
|
||||
~~ total allocations/frees...: 216712/216712
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 548 chars
|
||||
~~ json string max len.......: 2377 chars
|
||||
~~ json string avg len.......: 1389 chars
|
||||
~~ json message min len.......: 548 chars
|
||||
~~ json message max len.......: 2377 chars
|
||||
~~ json message avg len.......: 1389 chars
|
||||
|
||||
@@ -53,6 +53,6 @@
|
||||
~~ total memory freed........: 11494850 bytes
|
||||
~~ total allocations/frees...: 216734/216734
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 517 chars
|
||||
~~ json string max len.......: 970 chars
|
||||
~~ json string avg len.......: 742 chars
|
||||
~~ json message min len.......: 517 chars
|
||||
~~ json message max len.......: 970 chars
|
||||
~~ json message avg len.......: 742 chars
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
~~ total memory freed........: 11487259 bytes
|
||||
~~ total allocations/frees...: 217033/217033
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 541 chars
|
||||
~~ json string max len.......: 2255 chars
|
||||
~~ json string avg len.......: 1331 chars
|
||||
~~ json message min len.......: 541 chars
|
||||
~~ json message max len.......: 2255 chars
|
||||
~~ json message avg len.......: 1331 chars
|
||||
|
||||
@@ -18,6 +18,6 @@
|
||||
~~ total memory freed........: 11475430 bytes
|
||||
~~ total allocations/frees...: 216627/216627
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 528 chars
|
||||
~~ json string max len.......: 1045 chars
|
||||
~~ json string avg len.......: 777 chars
|
||||
~~ json message min len.......: 528 chars
|
||||
~~ json message max len.......: 1045 chars
|
||||
~~ json message avg len.......: 777 chars
|
||||
|
||||
@@ -21,6 +21,6 @@
|
||||
~~ total memory freed........: 11476392 bytes
|
||||
~~ total allocations/frees...: 216654/216654
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 533 chars
|
||||
~~ json string max len.......: 1317 chars
|
||||
~~ json string avg len.......: 911 chars
|
||||
~~ json message min len.......: 533 chars
|
||||
~~ json message max len.......: 1317 chars
|
||||
~~ json message avg len.......: 911 chars
|
||||
|
||||
@@ -18,6 +18,6 @@
|
||||
~~ total memory freed........: 11475402 bytes
|
||||
~~ total allocations/frees...: 216626/216626
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 570 chars
|
||||
~~ json string max len.......: 978 chars
|
||||
~~ json string avg len.......: 763 chars
|
||||
~~ json message min len.......: 570 chars
|
||||
~~ json message max len.......: 978 chars
|
||||
~~ json message avg len.......: 763 chars
|
||||
|
||||
@@ -23,6 +23,6 @@
|
||||
~~ total memory freed........: 11525040 bytes
|
||||
~~ total allocations/frees...: 216696/216696
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 561 chars
|
||||
~~ json string max len.......: 2707 chars
|
||||
~~ json string avg len.......: 1607 chars
|
||||
~~ json message min len.......: 561 chars
|
||||
~~ json message max len.......: 2707 chars
|
||||
~~ json message avg len.......: 1607 chars
|
||||
|
||||
@@ -46,6 +46,6 @@
|
||||
~~ total memory freed........: 11490528 bytes
|
||||
~~ total allocations/frees...: 216710/216710
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 564 chars
|
||||
~~ json string max len.......: 983 chars
|
||||
~~ json string avg len.......: 772 chars
|
||||
~~ json message min len.......: 564 chars
|
||||
~~ json message max len.......: 983 chars
|
||||
~~ json message avg len.......: 772 chars
|
||||
|
||||
@@ -80,6 +80,6 @@
|
||||
~~ total memory freed........: 11495357 bytes
|
||||
~~ total allocations/frees...: 217064/217064
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 297 chars
|
||||
~~ json string max len.......: 2258 chars
|
||||
~~ json string avg len.......: 1276 chars
|
||||
~~ json message min len.......: 297 chars
|
||||
~~ json message max len.......: 2258 chars
|
||||
~~ json message avg len.......: 1276 chars
|
||||
|
||||
@@ -41,6 +41,6 @@
|
||||
~~ total memory freed........: 11473240 bytes
|
||||
~~ total allocations/frees...: 216614/216614
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 306 chars
|
||||
~~ json string max len.......: 738 chars
|
||||
~~ json string avg len.......: 521 chars
|
||||
~~ json message min len.......: 306 chars
|
||||
~~ json message max len.......: 738 chars
|
||||
~~ json message avg len.......: 521 chars
|
||||
|
||||
@@ -31,6 +31,6 @@
|
||||
~~ total memory freed........: 11489894 bytes
|
||||
~~ total allocations/frees...: 216924/216924
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 548 chars
|
||||
~~ json string max len.......: 2202 chars
|
||||
~~ json string avg len.......: 1355 chars
|
||||
~~ json message min len.......: 548 chars
|
||||
~~ json message max len.......: 2202 chars
|
||||
~~ json message avg len.......: 1355 chars
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
~~ total memory freed........: 11478214 bytes
|
||||
~~ total allocations/frees...: 216723/216723
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 550 chars
|
||||
~~ json string max len.......: 2133 chars
|
||||
~~ json string avg len.......: 1264 chars
|
||||
~~ json message min len.......: 550 chars
|
||||
~~ json message max len.......: 2133 chars
|
||||
~~ json message avg len.......: 1264 chars
|
||||
|
||||
@@ -67,6 +67,6 @@
|
||||
~~ total memory freed........: 11676489 bytes
|
||||
~~ total allocations/frees...: 216857/216857
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 544 chars
|
||||
~~ json string max len.......: 1409 chars
|
||||
~~ json string avg len.......: 975 chars
|
||||
~~ json message min len.......: 544 chars
|
||||
~~ json message max len.......: 1409 chars
|
||||
~~ json message avg len.......: 975 chars
|
||||
|
||||
@@ -21,6 +21,6 @@
|
||||
~~ total memory freed........: 11478272 bytes
|
||||
~~ total allocations/frees...: 216725/216725
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 500 chars
|
||||
~~ json string max len.......: 2056 chars
|
||||
~~ json string avg len.......: 1201 chars
|
||||
~~ json message min len.......: 500 chars
|
||||
~~ json message max len.......: 2056 chars
|
||||
~~ json message avg len.......: 1201 chars
|
||||
|
||||
@@ -73,6 +73,6 @@
|
||||
~~ total memory freed........: 11514622 bytes
|
||||
~~ total allocations/frees...: 216790/216790
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 538 chars
|
||||
~~ json string max len.......: 1547 chars
|
||||
~~ json string avg len.......: 1041 chars
|
||||
~~ json message min len.......: 538 chars
|
||||
~~ json message max len.......: 1547 chars
|
||||
~~ json message avg len.......: 1041 chars
|
||||
|
||||
@@ -131,6 +131,6 @@
|
||||
~~ total memory freed........: 11546864 bytes
|
||||
~~ total allocations/frees...: 217874/217874
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 534 chars
|
||||
~~ json string max len.......: 2321 chars
|
||||
~~ json string avg len.......: 1426 chars
|
||||
~~ json message min len.......: 534 chars
|
||||
~~ json message max len.......: 2321 chars
|
||||
~~ json message avg len.......: 1426 chars
|
||||
|
||||
@@ -84,6 +84,6 @@
|
||||
~~ total memory freed........: 11494693 bytes
|
||||
~~ total allocations/frees...: 216791/216791
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 569 chars
|
||||
~~ json string max len.......: 2401 chars
|
||||
~~ json string avg len.......: 1484 chars
|
||||
~~ json message min len.......: 569 chars
|
||||
~~ json message max len.......: 2401 chars
|
||||
~~ json message avg len.......: 1484 chars
|
||||
|
||||
@@ -37,6 +37,6 @@
|
||||
~~ total memory freed........: 11486418 bytes
|
||||
~~ total allocations/frees...: 216672/216672
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 535 chars
|
||||
~~ json string max len.......: 1190 chars
|
||||
~~ json string avg len.......: 861 chars
|
||||
~~ json message min len.......: 535 chars
|
||||
~~ json message max len.......: 1190 chars
|
||||
~~ json message avg len.......: 861 chars
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
~~ total memory freed........: 11475373 bytes
|
||||
~~ total allocations/frees...: 216625/216625
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 565 chars
|
||||
~~ json string max len.......: 950 chars
|
||||
~~ json string avg len.......: 736 chars
|
||||
~~ json message min len.......: 565 chars
|
||||
~~ json message max len.......: 950 chars
|
||||
~~ json message avg len.......: 736 chars
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
~~ total memory freed........: 11475825 bytes
|
||||
~~ total allocations/frees...: 216642/216642
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 562 chars
|
||||
~~ json string max len.......: 1093 chars
|
||||
~~ json string avg len.......: 822 chars
|
||||
~~ json message min len.......: 562 chars
|
||||
~~ json message max len.......: 1093 chars
|
||||
~~ json message avg len.......: 822 chars
|
||||
|
||||
@@ -74,6 +74,6 @@
|
||||
~~ total memory freed........: 11491209 bytes
|
||||
~~ total allocations/frees...: 216796/216796
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 567 chars
|
||||
~~ json string max len.......: 977 chars
|
||||
~~ json string avg len.......: 771 chars
|
||||
~~ json message min len.......: 567 chars
|
||||
~~ json message max len.......: 977 chars
|
||||
~~ json message avg len.......: 771 chars
|
||||
|
||||
@@ -40,6 +40,6 @@
|
||||
~~ total memory freed........: 11484016 bytes
|
||||
~~ total allocations/frees...: 216727/216727
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 313 chars
|
||||
~~ json string max len.......: 2364 chars
|
||||
~~ json string avg len.......: 1345 chars
|
||||
~~ json message min len.......: 313 chars
|
||||
~~ json message max len.......: 2364 chars
|
||||
~~ json message avg len.......: 1345 chars
|
||||
|
||||
@@ -21,6 +21,6 @@
|
||||
~~ total memory freed........: 11477506 bytes
|
||||
~~ total allocations/frees...: 216636/216636
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 579 chars
|
||||
~~ json string max len.......: 1132 chars
|
||||
~~ json string avg len.......: 850 chars
|
||||
~~ json message min len.......: 579 chars
|
||||
~~ json message max len.......: 1132 chars
|
||||
~~ json message avg len.......: 850 chars
|
||||
|
||||
@@ -36,6 +36,6 @@
|
||||
~~ total memory freed........: 11484018 bytes
|
||||
~~ total allocations/frees...: 216673/216673
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 580 chars
|
||||
~~ json string max len.......: 2220 chars
|
||||
~~ json string avg len.......: 1399 chars
|
||||
~~ json message min len.......: 580 chars
|
||||
~~ json message max len.......: 2220 chars
|
||||
~~ json message avg len.......: 1399 chars
|
||||
|
||||
@@ -31,6 +31,6 @@
|
||||
~~ total memory freed........: 11480008 bytes
|
||||
~~ total allocations/frees...: 216660/216660
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 587 chars
|
||||
~~ json string max len.......: 1074 chars
|
||||
~~ json string avg len.......: 828 chars
|
||||
~~ json message min len.......: 587 chars
|
||||
~~ json message max len.......: 1074 chars
|
||||
~~ json message avg len.......: 828 chars
|
||||
|
||||
@@ -37,6 +37,6 @@
|
||||
~~ total memory freed........: 11492356 bytes
|
||||
~~ total allocations/frees...: 216671/216671
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 557 chars
|
||||
~~ json string max len.......: 2497 chars
|
||||
~~ json string avg len.......: 1526 chars
|
||||
~~ json message min len.......: 557 chars
|
||||
~~ json message max len.......: 2497 chars
|
||||
~~ json message avg len.......: 1526 chars
|
||||
|
||||
@@ -39,6 +39,6 @@
|
||||
~~ total memory freed........: 11482232 bytes
|
||||
~~ total allocations/frees...: 216674/216674
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 567 chars
|
||||
~~ json string max len.......: 1808 chars
|
||||
~~ json string avg len.......: 1186 chars
|
||||
~~ json message min len.......: 567 chars
|
||||
~~ json message max len.......: 1808 chars
|
||||
~~ json message avg len.......: 1186 chars
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
~~ total memory freed........: 11475373 bytes
|
||||
~~ total allocations/frees...: 216625/216625
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 572 chars
|
||||
~~ json string max len.......: 1004 chars
|
||||
~~ json string avg len.......: 771 chars
|
||||
~~ json message min len.......: 572 chars
|
||||
~~ json message max len.......: 1004 chars
|
||||
~~ json message avg len.......: 771 chars
|
||||
|
||||
@@ -21,6 +21,6 @@
|
||||
~~ total memory freed........: 11475546 bytes
|
||||
~~ total allocations/frees...: 216631/216631
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 569 chars
|
||||
~~ json string max len.......: 1014 chars
|
||||
~~ json string avg len.......: 789 chars
|
||||
~~ json message min len.......: 569 chars
|
||||
~~ json message max len.......: 1014 chars
|
||||
~~ json message avg len.......: 789 chars
|
||||
|
||||
@@ -326,6 +326,6 @@
|
||||
~~ total memory freed........: 11564650 bytes
|
||||
~~ total allocations/frees...: 217410/217410
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 516 chars
|
||||
~~ json string max len.......: 2458 chars
|
||||
~~ json string avg len.......: 1487 chars
|
||||
~~ json message min len.......: 516 chars
|
||||
~~ json message max len.......: 2458 chars
|
||||
~~ json message avg len.......: 1487 chars
|
||||
|
||||
@@ -45,6 +45,6 @@
|
||||
~~ total memory freed........: 11473240 bytes
|
||||
~~ total allocations/frees...: 216614/216614
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 309 chars
|
||||
~~ json string max len.......: 645 chars
|
||||
~~ json string avg len.......: 475 chars
|
||||
~~ json message min len.......: 309 chars
|
||||
~~ json message max len.......: 645 chars
|
||||
~~ json message avg len.......: 475 chars
|
||||
|
||||
@@ -14,6 +14,6 @@
|
||||
~~ total memory freed........: 11473240 bytes
|
||||
~~ total allocations/frees...: 216614/216614
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 277 chars
|
||||
~~ json string max len.......: 1955 chars
|
||||
~~ json string avg len.......: 925 chars
|
||||
~~ json message min len.......: 277 chars
|
||||
~~ json message max len.......: 1955 chars
|
||||
~~ json message avg len.......: 925 chars
|
||||
|
||||
@@ -91,6 +91,6 @@
|
||||
~~ total memory freed........: 11506491 bytes
|
||||
~~ total allocations/frees...: 217261/217261
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 540 chars
|
||||
~~ json string max len.......: 2098 chars
|
||||
~~ json string avg len.......: 1319 chars
|
||||
~~ json message min len.......: 540 chars
|
||||
~~ json message max len.......: 2098 chars
|
||||
~~ json message avg len.......: 1319 chars
|
||||
|
||||
@@ -19,6 +19,6 @@
|
||||
~~ total memory freed........: 11475455 bytes
|
||||
~~ total allocations/frees...: 216628/216628
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 568 chars
|
||||
~~ json string max len.......: 1489 chars
|
||||
~~ json string avg len.......: 1009 chars
|
||||
~~ json message min len.......: 568 chars
|
||||
~~ json message max len.......: 1489 chars
|
||||
~~ json message avg len.......: 1009 chars
|
||||
|
||||
@@ -56,6 +56,6 @@
|
||||
~~ total memory freed........: 11488570 bytes
|
||||
~~ total allocations/frees...: 216705/216705
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 578 chars
|
||||
~~ json string max len.......: 1116 chars
|
||||
~~ json string avg len.......: 846 chars
|
||||
~~ json message min len.......: 578 chars
|
||||
~~ json message max len.......: 1116 chars
|
||||
~~ json message avg len.......: 846 chars
|
||||
|
||||
@@ -19,6 +19,6 @@
|
||||
~~ total memory freed........: 11475430 bytes
|
||||
~~ total allocations/frees...: 216627/216627
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 578 chars
|
||||
~~ json string max len.......: 1232 chars
|
||||
~~ json string avg len.......: 895 chars
|
||||
~~ json message min len.......: 578 chars
|
||||
~~ json message max len.......: 1232 chars
|
||||
~~ json message avg len.......: 895 chars
|
||||
|
||||
@@ -23,6 +23,6 @@
|
||||
~~ total memory freed........: 11488008 bytes
|
||||
~~ total allocations/frees...: 217061/217061
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 578 chars
|
||||
~~ json string max len.......: 2394 chars
|
||||
~~ json string avg len.......: 1416 chars
|
||||
~~ json message min len.......: 578 chars
|
||||
~~ json message max len.......: 2394 chars
|
||||
~~ json message avg len.......: 1416 chars
|
||||
|
||||
@@ -23,6 +23,6 @@
|
||||
~~ total memory freed........: 11483862 bytes
|
||||
~~ total allocations/frees...: 216680/216680
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 543 chars
|
||||
~~ json string max len.......: 2397 chars
|
||||
~~ json string avg len.......: 1403 chars
|
||||
~~ json message min len.......: 543 chars
|
||||
~~ json message max len.......: 2397 chars
|
||||
~~ json message avg len.......: 1403 chars
|
||||
|
||||
@@ -73,6 +73,6 @@
|
||||
~~ total memory freed........: 11495164 bytes
|
||||
~~ total allocations/frees...: 216745/216745
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 580 chars
|
||||
~~ json string max len.......: 1328 chars
|
||||
~~ json string avg len.......: 953 chars
|
||||
~~ json message min len.......: 580 chars
|
||||
~~ json message max len.......: 1328 chars
|
||||
~~ json message avg len.......: 953 chars
|
||||
|
||||
@@ -23,6 +23,6 @@
|
||||
~~ total memory freed........: 11489013 bytes
|
||||
~~ total allocations/frees...: 216773/216773
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 529 chars
|
||||
~~ json string max len.......: 2171 chars
|
||||
~~ json string avg len.......: 1290 chars
|
||||
~~ json message min len.......: 529 chars
|
||||
~~ json message max len.......: 2171 chars
|
||||
~~ json message avg len.......: 1290 chars
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
~~ total memory freed........: 11484402 bytes
|
||||
~~ total allocations/frees...: 216667/216667
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 545 chars
|
||||
~~ json string max len.......: 1916 chars
|
||||
~~ json string avg len.......: 1189 chars
|
||||
~~ json message min len.......: 545 chars
|
||||
~~ json message max len.......: 1916 chars
|
||||
~~ json message avg len.......: 1189 chars
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
~~ total memory freed........: 11484186 bytes
|
||||
~~ total allocations/frees...: 216927/216927
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 577 chars
|
||||
~~ json string max len.......: 2502 chars
|
||||
~~ json string avg len.......: 1503 chars
|
||||
~~ json message min len.......: 577 chars
|
||||
~~ json message max len.......: 2502 chars
|
||||
~~ json message avg len.......: 1503 chars
|
||||
|
||||
@@ -163,6 +163,6 @@
|
||||
~~ total memory freed........: 11519971 bytes
|
||||
~~ total allocations/frees...: 216915/216915
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 325 chars
|
||||
~~ json string max len.......: 2522 chars
|
||||
~~ json string avg len.......: 1423 chars
|
||||
~~ json message min len.......: 325 chars
|
||||
~~ json message max len.......: 2522 chars
|
||||
~~ json message avg len.......: 1423 chars
|
||||
|
||||
@@ -18,6 +18,6 @@
|
||||
~~ total memory freed........: 11475402 bytes
|
||||
~~ total allocations/frees...: 216626/216626
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~ json string min len.......: 545 chars
|
||||
~~ json string max len.......: 1070 chars
|
||||
~~ json string avg len.......: 796 chars
|
||||
~~ json message min len.......: 545 chars
|
||||
~~ json message max len.......: 1070 chars
|
||||
~~ json message avg len.......: 796 chars
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user