Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

antivirus seems to keep files in memory #6803

Open
butonic opened this issue Jul 13, 2023 · 26 comments
Open

antivirus seems to keep files in memory #6803

butonic opened this issue Jul 13, 2023 · 26 comments
Assignees
Labels
Priority:p2-high Escalation, on top of current planning, release blocker Type:Bug

Comments

@butonic
Copy link
Member

butonic commented Jul 13, 2023

this causes the process to be OOMKilled quite frequently in loadtests. maybe because it does not release the memory early enough? maybe because it does not stream the file content? Needs to be investigated.

600Mi memory gets killed, 700Mi seems to work

@wkloucek
Copy link
Contributor

Screenshot_2023-07-13_14-23-36

@kobergj
Copy link
Collaborator

kobergj commented Jul 13, 2023

It keeps them in memory while scanning. Currently there is no streaming possible from the dataserver. It never stores files on disc.

We would need to implement:
A) Streaming from dataserver to antivirus
B) Streaming from antivirus to icap
C) A save way of writing files to disc and deleting them afterwards

Just for the records: This is a feature request, not a bug 😄

@wkloucek
Copy link
Contributor

I had a look at @butonic 's configuration and it seems like he did not limit the maximum scansize. But from what I know, his tests never use files larger than 100MB.

So even if the antivirus service has this file in memory, it should not need > 600MB of memory.

@kobergj
Copy link
Collaborator

kobergj commented Jul 14, 2023

Mmh. Codewise it looks fine. Compare antivirus scanning.

It holds the response body in memory until the file is scanned, but closes it correctly, even in error cases.

Could it be that there are multiple virus scans active at the same time?

@wkloucek
Copy link
Contributor

Could it be that there are multiple virus scans active at the same time?
From a code perspective this should currenlty not be possible:

for e := range ch {
ev := e.Event.(events.StartPostprocessingStep)

It holds the response body in memory until the file is scanned, but closes it correctly, even in error cases.

But we don't know what happens inside the icap lib?
Eg. https://github.com/egirna/icap-client/blob/master/request.go#L74C3-L74C7 looks like it duplicates the body and that could happen multiple times!?

@kobergj
Copy link
Collaborator

kobergj commented Jul 14, 2023

Yes, icap lib could be the baddy. We have already a ticket to replace it: #6764

@dragotin dragotin added the Priority:p2-high Escalation, on top of current planning, release blocker label Dec 7, 2023
@dragotin
Copy link
Contributor

dragotin commented Dec 7, 2023

This also sounds as if it could cause severe trouble on big installations. Increasing prio.

@dragotin
Copy link
Contributor

dragotin commented Dec 7, 2023

Handled in #6764, thus removing this from the prio list. Sorry for the noise.

@dragotin dragotin removed the Priority:p2-high Escalation, on top of current planning, release blocker label Dec 7, 2023
@wkloucek
Copy link
Contributor

wkloucek commented Dec 7, 2023

Handled in #6764, thus removing this from the prio list. Sorry for the noise.

From what I know, these issues are about different problems.

Or do you think #6764 will handle it because of discussions to completely replace the icap lib? If so it may make sense to have a new / dedicated ticket for that and link these two tickets only...

@wkloucek
Copy link
Contributor

wkloucek commented Jan 24, 2024

Handled in #6764, thus removing this from the prio list. Sorry for the noise.

@dragotin you said it has been handled in another ticket, could you please confirm that the high memory usage described in this ticket (#6903) is actually fixed since #6764 is now closed and was about connection closed behavior!?

@wkloucek
Copy link
Contributor

wkloucek commented Jan 24, 2024

@dragotin I re-tested on oCIS 5.0.0-rc.2 an this memory issue still perists. I tried to scan a 500MB file with a memory limit of 200M and 770M on the antivirus service. If that one would do proper streaming it should just work.

Please get it fixed to proper streaming.

Eg. for the cs3org WOPI server we had a similar issue: cs3org/wopiserver#134

@dragotin
Copy link
Contributor

Ok, according to @hodyroff and @d7oc this is still happening and an issue.

Questions to @d7oc about the current install:

  • What is the max size configured for the virus max scan size (env. var ANTIVIRUS_MAX_SCAN_SIZE)
  • Which service is consuming the memory in particular? Any change to see that?
  • Any logs available? That would be helpful

@d7oc
Copy link
Contributor

d7oc commented Aug 21, 2024

  • What is the max size configured for the virus max scan size (env. var ANTIVIRUS_MAX_SCAN_SIZE)

Which installation in particular? In a big setup we did a limitation to 50MB.

  • Which service is consuming the memory in particular? Any change to see that?

The service is the antivirus service.

  • Any logs available? That would be helpful

Last time I haven't seen anything specific in the logs. The memory just starts to grow and then the POD is OOMkilled.

@dragotin
Copy link
Contributor

@fschade can you help here?

@dragotin dragotin added the Priority:p2-high Escalation, on top of current planning, release blocker label Aug 21, 2024
@fschade
Copy link
Contributor

fschade commented Aug 21, 2024

@fschade can you help here?

yes, i check it as soon as were done with the permissions actions pr(s), i hope it will be done by tmrw

@fschade fschade self-assigned this Aug 22, 2024
@fschade
Copy link
Contributor

fschade commented Aug 22, 2024

no real big increase so far, something goofy is happening...., i'm on it.

Result
iteration 0
total 143 kB
mallocs 380 B

iteration 1
total 191 kB
mallocs 709 B

iteration 2
total 317 kB
mallocs 1.0 kB

iteration 3
total 364 kB
mallocs 1.4 kB

iteration 4
total 411 kB
mallocs 1.7 kB

iteration 5
total 458 kB
mallocs 2.0 kB

iteration 6
total 584 kB
mallocs 2.3 kB

iteration 7
total 631 kB
mallocs 2.7 kB

iteration 8
total 678 kB
mallocs 3.0 kB

iteration 9
total 725 kB
mallocs 3.3 kB

iteration 10
total 771 kB
mallocs 3.6 kB

iteration 11
total 818 kB
mallocs 3.9 kB

iteration 12
total 865 kB
mallocs 4.2 kB

iteration 13
total 912 kB
mallocs 4.6 kB

iteration 14
total 959 kB
mallocs 4.9 kB

iteration 15
total 1.0 MB
mallocs 5.2 kB

iteration 16
total 1.1 MB
mallocs 5.5 kB

iteration 17
total 1.1 MB
mallocs 5.8 kB

iteration 18
total 1.1 MB
mallocs 6.2 kB

iteration 19
total 1.2 MB
mallocs 6.5 kB

iteration 20
total 1.2 MB
mallocs 6.8 kB

iteration 21
total 1.3 MB
mallocs 7.1 kB

iteration 22
total 1.3 MB
mallocs 7.4 kB

iteration 23
total 1.4 MB
mallocs 7.8 kB

iteration 24
total 1.4 MB
mallocs 8.1 kB

iteration 25
total 1.5 MB
mallocs 8.4 kB

iteration 26
total 1.5 MB
mallocs 8.7 kB

iteration 27
total 1.6 MB
mallocs 9.0 kB

iteration 28
total 1.6 MB
mallocs 9.4 kB

iteration 29
total 1.7 MB
mallocs 9.7 kB

iteration 30
total 1.7 MB
mallocs 10 kB

iteration 31
total 1.8 MB
mallocs 10 kB

iteration 32
total 1.8 MB
mallocs 11 kB

iteration 33
total 1.9 MB
mallocs 11 kB

iteration 34
total 1.9 MB
mallocs 11 kB

iteration 35
total 1.9 MB
mallocs 12 kB

iteration 36
total 2.0 MB
mallocs 12 kB

iteration 37
total 2.0 MB
mallocs 12 kB

iteration 38
total 2.1 MB
mallocs 13 kB

iteration 39
total 2.1 MB
mallocs 13 kB

iteration 40
total 2.2 MB
mallocs 13 kB

iteration 41
total 2.2 MB
mallocs 14 kB

iteration 42
total 2.3 MB
mallocs 14 kB

iteration 43
total 2.3 MB
mallocs 14 kB

iteration 44
total 2.4 MB
mallocs 14 kB

iteration 45
total 2.5 MB
mallocs 15 kB

iteration 46
total 2.5 MB
mallocs 15 kB

iteration 47
total 2.6 MB
mallocs 15 kB

iteration 48
total 2.6 MB
mallocs 16 kB

iteration 49
total 2.7 MB
mallocs 16 kB

iteration 50
total 2.7 MB
mallocs 16 kB

iteration 51
total 2.8 MB
mallocs 17 kB

iteration 52
total 2.8 MB
mallocs 17 kB

iteration 53
total 2.9 MB
mallocs 17 kB

iteration 54
total 2.9 MB
mallocs 18 kB

iteration 55
total 3.0 MB
mallocs 18 kB

iteration 56
total 3.0 MB
mallocs 18 kB

iteration 57
total 3.1 MB
mallocs 19 kB

iteration 58
total 3.1 MB
mallocs 19 kB

iteration 59
total 3.2 MB
mallocs 19 kB

iteration 60
total 3.3 MB
mallocs 20 kB

iteration 61
total 3.3 MB
mallocs 20 kB

iteration 62
total 3.4 MB
mallocs 20 kB

iteration 63
total 3.4 MB
mallocs 21 kB

iteration 64
total 3.5 MB
mallocs 21 kB

iteration 65
total 3.5 MB
mallocs 21 kB

iteration 66
total 3.6 MB
mallocs 22 kB

iteration 67
total 3.6 MB
mallocs 22 kB

iteration 68
total 3.7 MB
mallocs 22 kB

iteration 69
total 3.7 MB
mallocs 22 kB

iteration 70
total 3.8 MB
mallocs 23 kB

iteration 71
total 3.8 MB
mallocs 23 kB

iteration 72
total 3.9 MB
mallocs 24 kB

iteration 73
total 3.9 MB
mallocs 24 kB

iteration 74
total 4.0 MB
mallocs 24 kB

iteration 75
total 4.0 MB
mallocs 24 kB

iteration 76
total 4.1 MB
mallocs 25 kB

iteration 77
total 4.1 MB
mallocs 25 kB

iteration 78
total 4.1 MB
mallocs 25 kB

iteration 79
total 4.2 MB
mallocs 26 kB

iteration 80
total 4.2 MB
mallocs 26 kB

iteration 81
total 4.3 MB
mallocs 26 kB

iteration 82
total 4.3 MB
mallocs 27 kB

iteration 83
total 4.4 MB
mallocs 27 kB

iteration 84
total 4.4 MB
mallocs 27 kB

iteration 85
total 4.5 MB
mallocs 28 kB

iteration 86
total 4.5 MB
mallocs 28 kB

iteration 87
total 4.6 MB
mallocs 28 kB

iteration 88
total 4.6 MB
mallocs 29 kB

iteration 89
total 4.7 MB
mallocs 29 kB

iteration 90
total 4.7 MB
mallocs 29 kB

iteration 91
total 4.8 MB
mallocs 30 kB

iteration 92
total 4.8 MB
mallocs 30 kB

iteration 93
total 4.8 MB
mallocs 30 kB

iteration 94
total 4.9 MB
mallocs 30 kB

iteration 95
total 4.9 MB
mallocs 31 kB

iteration 96
total 5.0 MB
mallocs 31 kB

iteration 97
total 5.0 MB
mallocs 31 kB

iteration 98
total 5.1 MB
mallocs 32 kB

iteration 99
total 5.1 MB
mallocs 32 kB

iteration 100
total 5.2 MB
mallocs 32 kB

iteration 101
total 5.2 MB
mallocs 33 kB

iteration 102
total 5.3 MB
mallocs 33 kB

iteration 103
total 5.3 MB
mallocs 33 kB

iteration 104
total 5.4 MB
mallocs 34 kB

iteration 105
total 5.4 MB
mallocs 34 kB

iteration 106
total 5.5 MB
mallocs 34 kB

iteration 107
total 5.5 MB
mallocs 35 kB

iteration 108
total 5.6 MB
mallocs 35 kB

iteration 109
total 5.6 MB
mallocs 35 kB

iteration 110
total 5.7 MB
mallocs 36 kB

iteration 111
total 5.7 MB
mallocs 36 kB

iteration 112
total 5.8 MB
mallocs 36 kB

iteration 113
total 5.8 MB
mallocs 36 kB

iteration 114
total 5.8 MB
mallocs 37 kB

iteration 115
total 5.9 MB
mallocs 37 kB

iteration 116
total 5.9 MB
mallocs 38 kB

iteration 117
total 6.0 MB
mallocs 38 kB

iteration 118
total 6.0 MB
mallocs 38 kB

iteration 119
total 6.1 MB
mallocs 38 kB

iteration 120
total 6.1 MB
mallocs 39 kB

iteration 121
total 6.2 MB
mallocs 39 kB

iteration 122
total 6.2 MB
mallocs 39 kB

iteration 123
total 6.3 MB
mallocs 40 kB

iteration 124
total 6.3 MB
mallocs 40 kB

iteration 125
total 6.4 MB
mallocs 40 kB

iteration 126
total 6.4 MB
mallocs 41 kB

iteration 127
total 6.5 MB
mallocs 41 kB

iteration 128
total 6.5 MB
mallocs 41 kB

iteration 129
total 6.5 MB
mallocs 42 kB

iteration 130
total 6.6 MB
mallocs 42 kB

iteration 131
total 6.6 MB
mallocs 42 kB

iteration 132
total 6.7 MB
mallocs 43 kB

iteration 133
total 6.7 MB
mallocs 43 kB

iteration 134
total 6.8 MB
mallocs 43 kB

iteration 135
total 6.8 MB
mallocs 44 kB

iteration 136
total 6.9 MB
mallocs 44 kB

iteration 137
total 6.9 MB
mallocs 44 kB

iteration 138
total 7.0 MB
mallocs 44 kB

iteration 139
total 7.0 MB
mallocs 45 kB

iteration 140
total 7.1 MB
mallocs 45 kB

iteration 141
total 7.1 MB
mallocs 45 kB

iteration 142
total 7.2 MB
mallocs 46 kB

iteration 143
total 7.2 MB
mallocs 46 kB

iteration 144
total 7.2 MB
mallocs 46 kB

iteration 145
total 7.3 MB
mallocs 47 kB

iteration 146
total 7.3 MB
mallocs 47 kB

iteration 147
total 7.4 MB
mallocs 47 kB

iteration 148
total 7.4 MB
mallocs 48 kB

iteration 149
total 7.5 MB
mallocs 48 kB

iteration 150
total 7.5 MB
mallocs 48 kB

iteration 151
total 7.6 MB
mallocs 49 kB

iteration 152
total 7.6 MB
mallocs 49 kB

iteration 153
total 7.7 MB
mallocs 49 kB

iteration 154
total 7.7 MB
mallocs 50 kB

iteration 155
total 7.8 MB
mallocs 50 kB

iteration 156
total 7.8 MB
mallocs 50 kB

iteration 157
total 7.9 MB
mallocs 51 kB

iteration 158
total 7.9 MB
mallocs 51 kB

iteration 159
total 8.0 MB
mallocs 51 kB

iteration 160
total 8.0 MB
mallocs 52 kB

iteration 161
total 8.1 MB
mallocs 52 kB

iteration 162
total 8.1 MB
mallocs 52 kB

iteration 163
total 8.1 MB
mallocs 52 kB

iteration 164
total 8.2 MB
mallocs 53 kB

iteration 165
total 8.2 MB
mallocs 53 kB

iteration 166
total 8.3 MB
mallocs 53 kB

iteration 167
total 8.3 MB
mallocs 54 kB

iteration 168
total 8.4 MB
mallocs 54 kB

iteration 169
total 8.4 MB
mallocs 54 kB

iteration 170
total 8.5 MB
mallocs 55 kB

iteration 171
total 8.5 MB
mallocs 55 kB

iteration 172
total 8.6 MB
mallocs 55 kB

iteration 173
total 8.6 MB
mallocs 56 kB

iteration 174
total 8.7 MB
mallocs 56 kB

iteration 175
total 8.7 MB
mallocs 56 kB

iteration 176
total 8.8 MB
mallocs 57 kB

iteration 177
total 8.8 MB
mallocs 57 kB

iteration 178
total 8.8 MB
mallocs 57 kB

iteration 179
total 8.9 MB
mallocs 58 kB

iteration 180
total 8.9 MB
mallocs 58 kB

iteration 181
total 9.0 MB
mallocs 58 kB

iteration 182
total 9.0 MB
mallocs 58 kB

iteration 183
total 9.1 MB
mallocs 59 kB

iteration 184
total 9.1 MB
mallocs 59 kB

iteration 185
total 9.2 MB
mallocs 60 kB

iteration 186
total 9.2 MB
mallocs 60 kB

iteration 187
total 9.3 MB
mallocs 60 kB

iteration 188
total 9.3 MB
mallocs 60 kB

iteration 189
total 9.4 MB
mallocs 61 kB

iteration 190
total 9.4 MB
mallocs 61 kB

iteration 191
total 9.5 MB
mallocs 61 kB

iteration 192
total 9.5 MB
mallocs 62 kB

iteration 193
total 9.6 MB
mallocs 62 kB

iteration 194
total 9.6 MB
mallocs 62 kB

iteration 195
total 9.6 MB
mallocs 63 kB

iteration 196
total 9.7 MB
mallocs 63 kB

iteration 197
total 9.7 MB
mallocs 63 kB

iteration 198
total 9.8 MB
mallocs 64 kB

iteration 199
total 9.8 MB
mallocs 64 kB

iteration 200
total 9.9 MB
mallocs 64 kB

iteration 201
total 9.9 MB
mallocs 65 kB

iteration 202
total 10 MB
mallocs 65 kB

iteration 203
total 10 MB
mallocs 65 kB

iteration 204
total 10 MB
mallocs 66 kB

iteration 205
total 10 MB
mallocs 66 kB

iteration 206
total 10 MB
mallocs 66 kB

iteration 207
total 10 MB
mallocs 66 kB

iteration 208
total 10 MB
mallocs 67 kB

iteration 209
total 10 MB
mallocs 67 kB

iteration 210
total 10 MB
mallocs 68 kB

iteration 211
total 10 MB
mallocs 68 kB

iteration 212
total 10 MB
mallocs 68 kB

iteration 213
total 10 MB
mallocs 68 kB

iteration 214
total 10 MB
mallocs 69 kB

iteration 215
total 11 MB
mallocs 69 kB

iteration 216
total 11 MB
mallocs 69 kB

iteration 217
total 11 MB
mallocs 70 kB

iteration 218
total 11 MB
mallocs 70 kB

iteration 219
total 11 MB
mallocs 70 kB

iteration 220
total 11 MB
mallocs 71 kB

iteration 221
total 11 MB
mallocs 71 kB

iteration 222
total 11 MB
mallocs 71 kB

iteration 223
total 11 MB
mallocs 72 kB

iteration 224
total 11 MB
mallocs 72 kB

iteration 225
total 11 MB
mallocs 72 kB

iteration 226
total 11 MB
mallocs 73 kB

iteration 227
total 11 MB
mallocs 73 kB

iteration 228
total 11 MB
mallocs 73 kB

iteration 229
total 11 MB
mallocs 74 kB

iteration 230
total 12 MB
mallocs 74 kB

iteration 231
total 12 MB
mallocs 74 kB

iteration 232
total 12 MB
mallocs 74 kB

iteration 233
total 12 MB
mallocs 75 kB

iteration 234
total 12 MB
mallocs 75 kB

iteration 235
total 12 MB
mallocs 76 kB

iteration 236
total 12 MB
mallocs 76 kB

iteration 237
total 12 MB
mallocs 76 kB

iteration 238
total 12 MB
mallocs 76 kB

iteration 239
total 12 MB
mallocs 77 kB

iteration 240
total 12 MB
mallocs 77 kB

iteration 241
total 12 MB
mallocs 77 kB

iteration 242
total 12 MB
mallocs 78 kB

iteration 243
total 12 MB
mallocs 78 kB

iteration 244
total 12 MB
mallocs 78 kB

iteration 245
total 12 MB
mallocs 79 kB

iteration 246
total 12 MB
mallocs 79 kB

iteration 247
total 12 MB
mallocs 79 kB

iteration 248
total 12 MB
mallocs 80 kB

iteration 249
total 12 MB
mallocs 80 kB

iteration 250
total 12 MB
mallocs 80 kB

iteration 251
total 12 MB
mallocs 81 kB

iteration 252
total 12 MB
mallocs 81 kB

iteration 253
total 13 MB
mallocs 81 kB

iteration 254
total 13 MB
mallocs 82 kB

iteration 255
total 13 MB
mallocs 82 kB

iteration 256
total 13 MB
mallocs 82 kB

iteration 257
total 13 MB
mallocs 82 kB

iteration 258
total 13 MB
mallocs 83 kB

iteration 259
total 13 MB
mallocs 83 kB

iteration 260
total 13 MB
mallocs 83 kB

iteration 261
total 13 MB
mallocs 84 kB

iteration 262
total 13 MB
mallocs 84 kB

iteration 263
total 13 MB
mallocs 84 kB

iteration 264
total 13 MB
mallocs 85 kB

iteration 265
total 13 MB
mallocs 85 kB

iteration 266
total 13 MB
mallocs 85 kB

iteration 267
total 13 MB
mallocs 86 kB

iteration 268
total 13 MB
mallocs 86 kB

iteration 269
total 13 MB
mallocs 86 kB

iteration 270
total 13 MB
mallocs 87 kB

iteration 271
total 13 MB
mallocs 87 kB

iteration 272
total 14 MB
mallocs 87 kB

iteration 273
total 14 MB
mallocs 88 kB

iteration 274
total 14 MB
mallocs 88 kB

iteration 275
total 14 MB
mallocs 88 kB

iteration 276
total 14 MB
mallocs 89 kB

iteration 277
total 14 MB
mallocs 89 kB

iteration 278
total 14 MB
mallocs 89 kB

iteration 279
total 14 MB
mallocs 90 kB

iteration 280
total 14 MB
mallocs 90 kB

iteration 281
total 14 MB
mallocs 90 kB

iteration 282
total 14 MB
mallocs 90 kB

iteration 283
total 14 MB
mallocs 91 kB

iteration 284
total 14 MB
mallocs 91 kB

iteration 285
total 14 MB
mallocs 91 kB

iteration 286
total 14 MB
mallocs 92 kB

iteration 287
total 14 MB
mallocs 92 kB

iteration 288
total 14 MB
mallocs 92 kB

iteration 289
total 14 MB
mallocs 93 kB

iteration 290
total 14 MB
mallocs 93 kB

iteration 291
total 14 MB
mallocs 93 kB

iteration 292
total 14 MB
mallocs 94 kB

iteration 293
total 14 MB
mallocs 94 kB

iteration 294
total 14 MB
mallocs 94 kB

iteration 295
total 15 MB
mallocs 95 kB

iteration 296
total 15 MB
mallocs 95 kB

iteration 297
total 15 MB
mallocs 95 kB

iteration 298
total 15 MB
mallocs 96 kB

iteration 299
total 15 MB
mallocs 96 kB

iteration 300
total 15 MB
mallocs 96 kB

iteration 301
total 15 MB
mallocs 96 kB

iteration 302
total 15 MB
mallocs 97 kB

iteration 303
total 15 MB
mallocs 97 kB

iteration 304
total 15 MB
mallocs 98 kB

iteration 305
total 15 MB
mallocs 98 kB

iteration 306
total 15 MB
mallocs 98 kB

iteration 307
total 15 MB
mallocs 98 kB

iteration 308
total 15 MB
mallocs 99 kB

iteration 309
total 15 MB
mallocs 99 kB

iteration 310
total 15 MB
mallocs 99 kB

iteration 311
total 15 MB
mallocs 100 kB

iteration 312
total 15 MB
mallocs 100 kB

iteration 313
total 15 MB
mallocs 100 kB

iteration 314
total 16 MB
mallocs 101 kB

iteration 315
total 16 MB
mallocs 101 kB

iteration 316
total 16 MB
mallocs 101 kB

iteration 317
total 16 MB
mallocs 102 kB

iteration 318
total 16 MB
mallocs 102 kB

iteration 319
total 16 MB
mallocs 102 kB

iteration 320
total 16 MB
mallocs 103 kB

iteration 321
total 16 MB
mallocs 103 kB

iteration 322
total 16 MB
mallocs 103 kB

iteration 323
total 16 MB
mallocs 104 kB

iteration 324
total 16 MB
mallocs 104 kB

iteration 325
total 16 MB
mallocs 104 kB

iteration 326
total 16 MB
mallocs 104 kB

iteration 327
total 16 MB
mallocs 105 kB

iteration 328
total 16 MB
mallocs 105 kB

iteration 329
total 16 MB
mallocs 106 kB

iteration 330
total 16 MB
mallocs 106 kB

iteration 331
total 16 MB
mallocs 106 kB

iteration 332
total 16 MB
mallocs 106 kB

iteration 333
total 16 MB
mallocs 107 kB

iteration 334
total 16 MB
mallocs 107 kB

iteration 335
total 16 MB
mallocs 107 kB

iteration 336
total 16 MB
mallocs 108 kB

iteration 337
total 16 MB
mallocs 108 kB

iteration 338
total 17 MB
mallocs 108 kB

iteration 339
total 17 MB
mallocs 109 kB

iteration 340
total 17 MB
mallocs 109 kB

iteration 341
total 17 MB
mallocs 109 kB

iteration 342
total 17 MB
mallocs 110 kB

iteration 343
total 17 MB
mallocs 110 kB

iteration 344
total 17 MB
mallocs 110 kB

iteration 345
total 17 MB
mallocs 111 kB

iteration 346
total 17 MB
mallocs 111 kB

iteration 347
total 17 MB
mallocs 111 kB

iteration 348
total 17 MB
mallocs 112 kB

iteration 349
total 17 MB
mallocs 112 kB

iteration 350
total 17 MB
mallocs 112 kB

iteration 351
total 17 MB
mallocs 113 kB

iteration 352
total 17 MB
mallocs 113 kB

iteration 353
total 17 MB
mallocs 113 kB

iteration 354
total 17 MB
mallocs 114 kB

iteration 355
total 17 MB
mallocs 114 kB

iteration 356
total 17 MB
mallocs 114 kB

iteration 357
total 18 MB
mallocs 114 kB

iteration 358
total 18 MB
mallocs 115 kB

iteration 359
total 18 MB
mallocs 115 kB

iteration 360
total 18 MB
mallocs 115 kB

iteration 361
total 18 MB
mallocs 116 kB

iteration 362
total 18 MB
mallocs 116 kB

iteration 363
total 18 MB
mallocs 116 kB

iteration 364
total 18 MB
mallocs 117 kB

iteration 365
total 18 MB
mallocs 117 kB

iteration 366
total 18 MB
mallocs 117 kB

iteration 367
total 18 MB
mallocs 118 kB

iteration 368
total 18 MB
mallocs 118 kB

iteration 369
total 18 MB
mallocs 118 kB

iteration 370
total 18 MB
mallocs 119 kB

iteration 371
total 18 MB
mallocs 119 kB

iteration 372
total 18 MB
mallocs 119 kB

iteration 373
total 18 MB
mallocs 120 kB

iteration 374
total 18 MB
mallocs 120 kB

iteration 375
total 18 MB
mallocs 120 kB

iteration 376
total 18 MB
mallocs 121 kB

iteration 377
total 18 MB
mallocs 121 kB

iteration 378
total 18 MB
mallocs 121 kB

iteration 379
total 18 MB
mallocs 122 kB

iteration 380
total 19 MB
mallocs 122 kB

iteration 381
total 19 MB
mallocs 122 kB

iteration 382
total 19 MB
mallocs 122 kB

iteration 383
total 19 MB
mallocs 123 kB

iteration 384
total 19 MB
mallocs 123 kB

iteration 385
total 19 MB
mallocs 123 kB

iteration 386
total 19 MB
mallocs 124 kB

iteration 387
total 19 MB
mallocs 124 kB

iteration 388
total 19 MB
mallocs 124 kB

iteration 389
total 19 MB
mallocs 125 kB

iteration 390
total 19 MB
mallocs 125 kB

iteration 391
total 19 MB
mallocs 125 kB

iteration 392
total 19 MB
mallocs 126 kB

iteration 393
total 19 MB
mallocs 126 kB

iteration 394
total 19 MB
mallocs 126 kB

iteration 395
total 19 MB
mallocs 127 kB

iteration 396
total 19 MB
mallocs 127 kB

iteration 397
total 19 MB
mallocs 127 kB

iteration 398
total 19 MB
mallocs 128 kB

iteration 399
total 20 MB
mallocs 128 kB

iteration 400
total 20 MB
mallocs 128 kB

iteration 401
total 20 MB
mallocs 128 kB

iteration 402
total 20 MB
mallocs 129 kB

iteration 403
total 20 MB
mallocs 129 kB

iteration 404
total 20 MB
mallocs 130 kB

iteration 405
total 20 MB
mallocs 130 kB

iteration 406
total 20 MB
mallocs 130 kB

iteration 407
total 20 MB
mallocs 130 kB

iteration 408
total 20 MB
mallocs 131 kB

iteration 409
total 20 MB
mallocs 131 kB

iteration 410
total 20 MB
mallocs 131 kB

iteration 411
total 20 MB
mallocs 132 kB

iteration 412
total 20 MB
mallocs 132 kB

iteration 413
total 20 MB
mallocs 132 kB

iteration 414
total 20 MB
mallocs 133 kB

iteration 415
total 20 MB
mallocs 133 kB

iteration 416
total 20 MB
mallocs 133 kB

iteration 417
total 20 MB
mallocs 134 kB

iteration 418
total 20 MB
mallocs 134 kB

iteration 419
total 20 MB
mallocs 134 kB

iteration 420
total 20 MB
mallocs 135 kB

iteration 421
total 20 MB
mallocs 135 kB

iteration 422
total 21 MB
mallocs 135 kB

iteration 423
total 21 MB
mallocs 136 kB

iteration 424
total 21 MB
mallocs 136 kB

iteration 425
total 21 MB
mallocs 136 kB

iteration 426
total 21 MB
mallocs 137 kB

iteration 427
total 21 MB
mallocs 137 kB

iteration 428
total 21 MB
mallocs 137 kB

iteration 429
total 21 MB
mallocs 138 kB

iteration 430
total 21 MB
mallocs 138 kB

iteration 431
total 21 MB
mallocs 138 kB

iteration 432
total 21 MB
mallocs 138 kB

iteration 433
total 21 MB
mallocs 139 kB

iteration 434
total 21 MB
mallocs 139 kB

iteration 435
total 21 MB
mallocs 139 kB

iteration 436
total 21 MB
mallocs 140 kB

iteration 437
total 21 MB
mallocs 140 kB

iteration 438
total 21 MB
mallocs 140 kB

iteration 439
total 21 MB
mallocs 141 kB

iteration 440
total 22 MB
mallocs 141 kB

iteration 441
total 22 MB
mallocs 141 kB

iteration 442
total 22 MB
mallocs 142 kB

iteration 443
total 22 MB
mallocs 142 kB

iteration 444
total 22 MB
mallocs 142 kB

iteration 445
total 22 MB
mallocs 143 kB

iteration 446
total 22 MB
mallocs 143 kB

iteration 447
total 22 MB
mallocs 143 kB

iteration 448
total 22 MB
mallocs 144 kB

iteration 449
total 22 MB
mallocs 144 kB

iteration 450
total 22 MB
mallocs 144 kB

iteration 451
total 22 MB
mallocs 145 kB

iteration 452
total 22 MB
mallocs 145 kB

iteration 453
total 22 MB
mallocs 145 kB

iteration 454
total 22 MB
mallocs 146 kB

iteration 455
total 22 MB
mallocs 146 kB

iteration 456
total 22 MB
mallocs 146 kB

iteration 457
total 22 MB
mallocs 146 kB

iteration 458
total 22 MB
mallocs 147 kB

iteration 459
total 22 MB
mallocs 147 kB

iteration 460
total 22 MB
mallocs 147 kB

iteration 461
total 22 MB
mallocs 148 kB

iteration 462
total 22 MB
mallocs 148 kB

iteration 463
total 22 MB
mallocs 148 kB

iteration 464
total 23 MB
mallocs 149 kB

iteration 465
total 23 MB
mallocs 149 kB

iteration 466
total 23 MB
mallocs 149 kB

iteration 467
total 23 MB
mallocs 150 kB

iteration 468
total 23 MB
mallocs 150 kB

iteration 469
total 23 MB
mallocs 150 kB

iteration 470
total 23 MB
mallocs 151 kB

iteration 471
total 23 MB
mallocs 151 kB

iteration 472
total 23 MB
mallocs 151 kB

iteration 473
total 23 MB
mallocs 152 kB

iteration 474
total 23 MB
mallocs 152 kB

iteration 475
total 23 MB
mallocs 152 kB

iteration 476
total 23 MB
mallocs 153 kB

iteration 477
total 23 MB
mallocs 153 kB

iteration 478
total 24 MB
mallocs 153 kB

iteration 479
total 24 MB
mallocs 154 kB

iteration 480
total 24 MB
mallocs 154 kB

iteration 481
total 24 MB
mallocs 154 kB

iteration 482
total 24 MB
mallocs 154 kB

iteration 483
total 24 MB
mallocs 155 kB

iteration 484
total 24 MB
mallocs 155 kB

iteration 485
total 24 MB
mallocs 156 kB

iteration 486
total 24 MB
mallocs 156 kB

iteration 487
total 24 MB
mallocs 156 kB

iteration 488
total 24 MB
mallocs 156 kB

iteration 489
total 24 MB
mallocs 157 kB

iteration 490
total 24 MB
mallocs 157 kB

iteration 491
total 24 MB
mallocs 157 kB

iteration 492
total 24 MB
mallocs 158 kB

iteration 493
total 24 MB
mallocs 158 kB

iteration 494
total 24 MB
mallocs 158 kB

iteration 495
total 24 MB
mallocs 159 kB

iteration 496
total 24 MB
mallocs 159 kB

iteration 497
total 24 MB
mallocs 159 kB

iteration 498
total 24 MB
mallocs 160 kB

iteration 499
total 24 MB
mallocs 160 kB

iteration 500
total 24 MB
mallocs 160 kB

iteration 501
total 24 MB
mallocs 161 kB

iteration 502
total 25 MB
mallocs 161 kB

iteration 503
total 25 MB
mallocs 161 kB

iteration 504
total 25 MB
mallocs 162 kB

iteration 505
total 25 MB
mallocs 162 kB

iteration 506
total 25 MB
mallocs 162 kB

iteration 507
total 25 MB
mallocs 162 kB

iteration 508
total 25 MB
mallocs 163 kB

iteration 509
total 25 MB
mallocs 163 kB

iteration 510
total 25 MB
mallocs 164 kB

iteration 511
total 25 MB
mallocs 164 kB

iteration 512
total 25 MB
mallocs 164 kB

iteration 513
total 25 MB
mallocs 164 kB

iteration 514
total 25 MB
mallocs 165 kB

iteration 515
total 25 MB
mallocs 165 kB

iteration 516
total 25 MB
mallocs 165 kB

iteration 517
total 25 MB
mallocs 166 kB

iteration 518
total 25 MB
mallocs 166 kB

iteration 519
total 25 MB
mallocs 166 kB

iteration 520
total 25 MB
mallocs 167 kB

iteration 521
total 26 MB
mallocs 167 kB

iteration 522
total 26 MB
mallocs 167 kB

iteration 523
total 26 MB
mallocs 168 kB

iteration 524
total 26 MB
mallocs 168 kB

iteration 525
total 26 MB
mallocs 168 kB

iteration 526
total 26 MB
mallocs 169 kB

iteration 527
total 26 MB
mallocs 169 kB

iteration 528
total 26 MB
mallocs 169 kB

iteration 529
total 26 MB
mallocs 170 kB

iteration 530
total 26 MB
mallocs 170 kB

iteration 531
total 26 MB
mallocs 170 kB

iteration 532
total 26 MB
mallocs 170 kB

iteration 533
total 26 MB
mallocs 171 kB

iteration 534
total 26 MB
mallocs 171 kB

iteration 535
total 26 MB
mallocs 172 kB

iteration 536
total 26 MB
mallocs 172 kB

iteration 537
total 26 MB
mallocs 172 kB

iteration 538
total 26 MB
mallocs 172 kB

iteration 539
total 26 MB
mallocs 173 kB

iteration 540
total 26 MB
mallocs 173 kB

iteration 541
total 26 MB
mallocs 173 kB

iteration 542
total 26 MB
mallocs 174 kB

iteration 543
total 26 MB
mallocs 174 kB

iteration 544
total 27 MB
mallocs 174 kB

iteration 545
total 27 MB
mallocs 175 kB

iteration 546
total 27 MB
mallocs 175 kB

iteration 547
total 27 MB
mallocs 175 kB

iteration 548
total 27 MB
mallocs 176 kB

iteration 549
total 27 MB
mallocs 176 kB

iteration 550
total 27 MB
mallocs 176 kB

iteration 551
total 27 MB
mallocs 177 kB

iteration 552
total 27 MB
mallocs 177 kB

iteration 553
total 27 MB
mallocs 177 kB

iteration 554
total 27 MB
mallocs 178 kB

iteration 555
total 27 MB
mallocs 178 kB

iteration 556
total 27 MB
mallocs 178 kB

iteration 557
total 27 MB
mallocs 178 kB

iteration 558
total 27 MB
mallocs 179 kB

iteration 559
total 27 MB
mallocs 179 kB

iteration 560
total 27 MB
mallocs 180 kB

iteration 561
total 27 MB
mallocs 180 kB

iteration 562
total 27 MB
mallocs 180 kB

iteration 563
total 27 MB
mallocs 180 kB

iteration 564
total 28 MB
mallocs 181 kB

iteration 565
total 28 MB
mallocs 181 kB

iteration 566
total 28 MB
mallocs 181 kB

iteration 567
total 28 MB
mallocs 182 kB

iteration 568
total 28 MB
mallocs 182 kB

iteration 569
total 28 MB
mallocs 182 kB

iteration 570
total 28 MB
mallocs 183 kB

iteration 571
total 28 MB
mallocs 183 kB

iteration 572
total 28 MB
mallocs 183 kB

iteration 573
total 28 MB
mallocs 184 kB

iteration 574
total 28 MB
mallocs 184 kB

iteration 575
total 28 MB
mallocs 184 kB

iteration 576
total 28 MB
mallocs 185 kB

iteration 577
total 28 MB
mallocs 185 kB

iteration 578
total 28 MB
mallocs 185 kB

iteration 579
total 28 MB
mallocs 186 kB

iteration 580
total 28 MB
mallocs 186 kB

iteration 581
total 28 MB
mallocs 186 kB

iteration 582
total 28 MB
mallocs 186 kB

iteration 583
total 28 MB
mallocs 187 kB

iteration 584
total 28 MB
mallocs 187 kB

iteration 585
total 28 MB
mallocs 188 kB

iteration 586
total 28 MB
mallocs 188 kB

iteration 587
total 29 MB
mallocs 188 kB

iteration 588
total 29 MB
mallocs 188 kB

iteration 589
total 29 MB
mallocs 189 kB

iteration 590
total 29 MB
mallocs 189 kB

iteration 591
total 29 MB
mallocs 189 kB

iteration 592
total 29 MB
mallocs 190 kB

iteration 593
total 29 MB
mallocs 190 kB

iteration 594
total 29 MB
mallocs 190 kB

iteration 595
total 29 MB
mallocs 191 kB

iteration 596
total 29 MB
mallocs 191 kB

iteration 597
total 29 MB
mallocs 191 kB

iteration 598
total 29 MB
mallocs 192 kB

iteration 599
total 29 MB
mallocs 192 kB

iteration 600
total 29 MB
mallocs 192 kB

iteration 601
total 29 MB
mallocs 193 kB

iteration 602
total 29 MB
mallocs 193 kB

iteration 603
total 29 MB
mallocs 193 kB

iteration 604
total 29 MB
mallocs 194 kB

iteration 605
total 29 MB
mallocs 194 kB

iteration 606
total 30 MB
mallocs 194 kB

iteration 607
total 30 MB
mallocs 194 kB

iteration 608
total 30 MB
mallocs 195 kB

iteration 609
total 30 MB
mallocs 195 kB

iteration 610
total 30 MB
mallocs 196 kB

iteration 611
total 30 MB
mallocs 196 kB

iteration 612
total 30 MB
mallocs 196 kB

iteration 613
total 30 MB
mallocs 196 kB

iteration 614
total 30 MB
mallocs 197 kB

iteration 615
total 30 MB
mallocs 197 kB

iteration 616
total 30 MB
mallocs 197 kB

iteration 617
total 30 MB
mallocs 198 kB

iteration 618
total 30 MB
mallocs 198 kB

iteration 619
total 30 MB
mallocs 198 kB

iteration 620
total 30 MB
mallocs 199 kB

iteration 621
total 30 MB
mallocs 199 kB

iteration 622
total 30 MB
mallocs 199 kB

iteration 623
total 30 MB
mallocs 200 kB

iteration 624
total 30 MB
mallocs 200 kB

iteration 625
total 30 MB
mallocs 200 kB

iteration 626
total 30 MB
mallocs 201 kB

iteration 627
total 30 MB
mallocs 201 kB

iteration 628
total 30 MB
mallocs 201 kB

iteration 629
total 31 MB
mallocs 202 kB

iteration 630
total 31 MB
mallocs 202 kB

iteration 631
total 31 MB
mallocs 202 kB

iteration 632
total 31 MB
mallocs 202 kB

iteration 633
total 31 MB
mallocs 203 kB

iteration 634
total 31 MB
mallocs 203 kB

iteration 635
total 31 MB
mallocs 204 kB

iteration 636
total 31 MB
mallocs 204 kB

iteration 637
total 31 MB
mallocs 204 kB

iteration 638
total 31 MB
mallocs 204 kB

iteration 639
total 31 MB
mallocs 205 kB

iteration 640
total 31 MB
mallocs 205 kB

iteration 641
total 31 MB
mallocs 205 kB

iteration 642
total 31 MB
mallocs 206 kB

iteration 643
total 31 MB
mallocs 206 kB

iteration 644
total 31 MB
mallocs 206 kB

iteration 645
total 31 MB
mallocs 207 kB

iteration 646
total 31 MB
mallocs 207 kB

iteration 647
total 31 MB
mallocs 207 kB

iteration 648
total 31 MB
mallocs 208 kB

iteration 649
total 32 MB
mallocs 208 kB

iteration 650
total 32 MB
mallocs 208 kB

iteration 651
total 32 MB
mallocs 209 kB

iteration 652
total 32 MB
mallocs 209 kB

iteration 653
total 32 MB
mallocs 209 kB

iteration 654
total 32 MB
mallocs 210 kB

iteration 655
total 32 MB
mallocs 210 kB

iteration 656
total 32 MB
mallocs 210 kB

iteration 657
total 32 MB
mallocs 210 kB

iteration 658
total 32 MB
mallocs 211 kB

iteration 659
total 32 MB
mallocs 211 kB

iteration 660
total 32 MB
mallocs 211 kB

iteration 661
total 32 MB
mallocs 212 kB

iteration 662
total 32 MB
mallocs 212 kB

iteration 663
total 32 MB
mallocs 212 kB

iteration 664
total 32 MB
mallocs 213 kB

iteration 665
total 32 MB
mallocs 213 kB

iteration 666
total 32 MB
mallocs 213 kB

iteration 667
total 32 MB
mallocs 214 kB

iteration 668
total 32 MB
mallocs 214 kB

iteration 669
total 32 MB
mallocs 214 kB

iteration 670
total 32 MB
mallocs 215 kB

iteration 671
total 32 MB
mallocs 215 kB

iteration 672
total 33 MB
mallocs 215 kB

iteration 673
total 33 MB
mallocs 216 kB

iteration 674
total 33 MB
mallocs 216 kB

iteration 675
total 33 MB
mallocs 216 kB

iteration 676
total 33 MB
mallocs 217 kB

iteration 677
total 33 MB
mallocs 217 kB

iteration 678
total 33 MB
mallocs 217 kB

iteration 679
total 33 MB
mallocs 218 kB

iteration 680
total 33 MB
mallocs 218 kB

iteration 681
total 33 MB
mallocs 218 kB

iteration 682
total 33 MB
mallocs 218 kB

iteration 683
total 33 MB
mallocs 219 kB

iteration 684
total 33 MB
mallocs 219 kB

iteration 685
total 33 MB
mallocs 219 kB

iteration 686
total 33 MB
mallocs 220 kB

iteration 687
total 33 MB
mallocs 220 kB

iteration 688
total 33 MB
mallocs 220 kB

iteration 689
total 33 MB
mallocs 221 kB

iteration 690
total 33 MB
mallocs 221 kB

iteration 691
total 34 MB
mallocs 221 kB

iteration 692
total 34 MB
mallocs 222 kB

iteration 693
total 34 MB
mallocs 222 kB

iteration 694
total 34 MB
mallocs 222 kB

iteration 695
total 34 MB
mallocs 223 kB

iteration 696
total 34 MB
mallocs 223 kB

iteration 697
total 34 MB
mallocs 223 kB

iteration 698
total 34 MB
mallocs 224 kB

iteration 699
total 34 MB
mallocs 224 kB

iteration 700
total 34 MB
mallocs 224 kB

iteration 701
total 34 MB
mallocs 225 kB

iteration 702
total 34 MB
mallocs 225 kB

iteration 703
total 34 MB
mallocs 225 kB

iteration 704
total 34 MB
mallocs 226 kB

iteration 705
total 34 MB
mallocs 226 kB

iteration 706
total 34 MB
mallocs 226 kB

iteration 707
total 34 MB
mallocs 226 kB

iteration 708
total 34 MB
mallocs 227 kB

iteration 709
total 34 MB
mallocs 227 kB

iteration 710
total 34 MB
mallocs 227 kB

iteration 711
total 34 MB
mallocs 228 kB

iteration 712
total 34 MB
mallocs 228 kB

iteration 713
total 35 MB
mallocs 228 kB

iteration 714
total 35 MB
mallocs 229 kB

iteration 715
total 35 MB
mallocs 229 kB

iteration 716
total 35 MB
mallocs 229 kB

iteration 717
total 35 MB
mallocs 230 kB

iteration 718
total 35 MB
mallocs 230 kB

iteration 719
total 35 MB
mallocs 230 kB

iteration 720
total 35 MB
mallocs 231 kB

iteration 721
total 35 MB
mallocs 231 kB

iteration 722
total 35 MB
mallocs 231 kB

iteration 723
total 35 MB
mallocs 232 kB

iteration 724
total 35 MB
mallocs 232 kB

iteration 725
total 35 MB
mallocs 232 kB

iteration 726
total 35 MB
mallocs 233 kB

iteration 727
total 35 MB
mallocs 233 kB

iteration 728
total 35 MB
mallocs 233 kB

iteration 729
total 35 MB
mallocs 234 kB

iteration 730
total 35 MB
mallocs 234 kB

iteration 731
total 35 MB
mallocs 234 kB

iteration 732
total 36 MB
mallocs 234 kB

iteration 733
total 36 MB
mallocs 235 kB

iteration 734
total 36 MB
mallocs 235 kB

iteration 735
total 36 MB
mallocs 235 kB

iteration 736
total 36 MB
mallocs 236 kB

iteration 737
total 36 MB
mallocs 236 kB

iteration 738
total 36 MB
mallocs 236 kB

iteration 739
total 36 MB
mallocs 237 kB

iteration 740
total 36 MB
mallocs 237 kB

iteration 741
total 36 MB
mallocs 237 kB

iteration 742
total 36 MB
mallocs 238 kB

iteration 743
total 36 MB
mallocs 238 kB

iteration 744
total 36 MB
mallocs 238 kB

iteration 745
total 36 MB
mallocs 239 kB

@fschade
Copy link
Contributor

fschade commented Aug 22, 2024

hmmm, strange, really, looks good on my local machine, i will now start profiling and set up a homelabs instance to see if k6 can help bringing light into the dark...

@d7oc you have some live profilings?

Result
+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 1         |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 732 B     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 210 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 138 MB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 210 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 644 B     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 2         |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 2.9 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 210 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 146 MB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 210 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 1.2 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 3         |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 5.0 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 210 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 264 MB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 210 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 1.7 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 4         |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 7.2 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 210 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 210 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 2.3 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 5         |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 9.3 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 210 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 210 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 2.8 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 6         |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 12 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 210 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 210 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 3.4 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 7         |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 14 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 210 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 210 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 3.9 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 8         |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 16 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 210 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 4.5 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 9         |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 18 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 5.0 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 10        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 20 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 5.5 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 11        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 22 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 6.1 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 12        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 24 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 6.6 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 13        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 26 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 7.2 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 14        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 28 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 7.7 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 15        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 31 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 8.3 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 16        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 33 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 8.8 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 17        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 35 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 9.4 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 18        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 37 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 211 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 9.9 kB    |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 19        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 39 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 211 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 10 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 20        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 41 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 11 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 21        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 43 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 12 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 22        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 46 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 12 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 23        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 48 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 13 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 24        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 50 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 13 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 25        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 52 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 14 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 26        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 54 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 14 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 27        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 56 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 15 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 28        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 58 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 15 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 29        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 60 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 16 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 30        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 63 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 16 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 31        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 65 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 17 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 32        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 67 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 212 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 18 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 33        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 69 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 212 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 18 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 34        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 71 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 19 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 35        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 73 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 19 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 36        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 75 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 20 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 37        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 78 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 20 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 38        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 80 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 21 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 39        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 82 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 21 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 40        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 84 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 22 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 41        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 86 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 22 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 42        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 88 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 23 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 43        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 90 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 24 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 44        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 92 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 213 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 213 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 24 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 45        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 94 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 25 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 46        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 97 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 25 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 47        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 99 kB     |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 26 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 48        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 101 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 26 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 49        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 103 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 27 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 50        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 105 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 27 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 51        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 107 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 28 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 52        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 109 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 28 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 53        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 112 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 29 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 54        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 114 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 30 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 55        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 116 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 30 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 56        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 118 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 31 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 57        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 120 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 31 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 58        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 122 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 214 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 214 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 32 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 59        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 124 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 32 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 60        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 126 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 33 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 61        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 129 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 33 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 62        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 131 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 34 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 63        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 133 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 34 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 64        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 135 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 35 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 65        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 137 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 36 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 66        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 139 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 36 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 67        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 141 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 37 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 68        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 144 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 37 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 69        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 146 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 215 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 215 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 38 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 70        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 148 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 38 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 71        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 150 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 39 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 72        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 152 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 39 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 73        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 154 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 40 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 74        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 156 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 40 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 75        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 158 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 41 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 76        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 161 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 42 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 77        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 163 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 42 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 78        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 165 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 43 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 79        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 167 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 43 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 80        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 169 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 44 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 81        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 171 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 44 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 82        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 173 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 45 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 83        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 176 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 216 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 216 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 45 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 84        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 178 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 46 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 85        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 180 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 46 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 86        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 182 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 47 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 87        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 184 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 48 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 88        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 186 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 48 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 89        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 188 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 49 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 90        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 190 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 49 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 91        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 193 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 50 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 92        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 195 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 50 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 93        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 197 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 51 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 94        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 199 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 217 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 51 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 95        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 201 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 217 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 52 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 96        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 203 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 52 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 97        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 205 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 53 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 98        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 208 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 54 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 99        |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 210 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 54 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 100       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 212 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 55 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 101       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 214 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 55 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 102       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 216 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 56 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 103       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 218 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 56 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 104       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 220 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 57 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 105       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 222 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 57 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 106       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 225 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 58 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 107       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 227 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 58 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 108       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 229 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 218 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 59 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 109       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 231 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 218 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 219 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 60 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 110       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 233 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 219 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 219 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 60 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 111       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 235 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 219 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 219 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 61 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 112       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 238 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 219 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 219 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 61 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 113       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 240 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 219 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 219 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 62 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 114       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 242 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 219 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 219 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 62 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 115       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 244 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 219 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 219 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 63 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 116       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 246 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 219 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 219 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 63 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 117       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 248 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 219 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 219 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 64 kB     |
+----------+--------------+-----------+

####################

+----------+--------------+-----------+
| CATEGORY |    METRIC    |  RESULT   |
+----------+--------------+-----------+
| Test     | Scans total  | 118       |
+----------+--------------+-----------+
| File     | Name         | 200MB.zip |
+----------+--------------+-----------+
| Program  | TotalAlloc   | 4.2 GB    |
+----------+--------------+-----------+
| Program  | Mallocs      | 250 kB    |
+----------+--------------+-----------+
| Program  | HeapAlloc    | 219 MB    |
+----------+--------------+-----------+
| Program  | HeapReleased | 1.2 GB    |
+----------+--------------+-----------+
| Program  | HeapInuse    | 219 MB    |
+----------+--------------+-----------+
| Program  | Frees        | 64 kB     |
+----------+--------------+-----------+

@d7oc
Copy link
Contributor

d7oc commented Aug 22, 2024

@d7oc you have some live profilings?

What do you mean by live profilings?

btw. I would love to see the big console output in tickets in those tags:

<details> <summary>Click to expand</summary>
whatever
</details>

this helps to get the visualisation compact (and my mouse wheel lasts longer 😉 )

@fschade
Copy link
Contributor

fschade commented Aug 22, 2024

@d7oc you have some live profilings?

What do you mean by live profilings?

btw. I would love to see the big console output in tickets in those tags:

<details> <summary>Click to expand</summary>
whatever
</details>

this helps to get the visualisation compact (and my mouse wheel lasts longer 😉 )

hehe, your absolutelly right, i forgot it... fixed.

I meant pprof profilings

@d7oc
Copy link
Contributor

d7oc commented Aug 23, 2024

We don't have pprof profilings

@fschade
Copy link
Contributor

fschade commented Aug 29, 2024

@d7oc i created a version which contains some optimizations, can you please check https://github.com/fschade/ocis/tree/optimize-antivirus and let me know if it works, if not there is still room for improvements but we decided to try that one first

@wkloucek
Copy link
Contributor

I tried the code from fschade@20aabeb, but unfortunately I still needed a memory limit of 7000Mi to be able to scan a file that has 844MB. With 4000Mi it didn't work. I haven't tried the values in between.

@fschade
Copy link
Contributor

fschade commented Aug 31, 2024

@wkloucek you have one or two hours next week? I think it’s more easy if we can test it together, thanks 🙏

@wkloucek
Copy link
Contributor

wkloucek commented Sep 2, 2024

We had a look and antivirus still has big factor memory footprint. One can work around OOM kills in a limited way by setting GOMEMLIMIT to something like ~40% of the available memory instead of the default 90% (It gets very slow because of the resulting GC runs then)

Result: there needs to be proper streaming to make it fly. Otherwise there's always gonna be another limit that we reach (by having concorrent, bigger, ... files to be scanned)

@d7oc
Copy link
Contributor

d7oc commented Sep 3, 2024

As we just had a discussion about this topic in which also possible limits in ClamAV were discussed: Seems there are no limits anymore. Links which Willy found:

Cisco-Talos/clamav#809
Cisco-Talos/clamav#986

@micbar
Copy link
Contributor

micbar commented Sep 3, 2024

Upgrade from PM discussion

The current limit is ok. We are contractually obligated to scan 64 MB.

Streaming support for the ICAP lib is currently not a prio. That could change when FSecure support with large File support would be a requirement.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Priority:p2-high Escalation, on top of current planning, release blocker Type:Bug
Projects
Status: blocked
Development

No branches or pull requests

7 participants