1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{
"foo": 1,
"blah": 2,
"memory_report": {
"version": 1,
"hasMozMallocUsableSize": true,
"reports": [
{
"process": "P (pid 12345)",
"path": "explicit/foobar",
"kind": 1,
"units": 0,
"amount": 400,
"description": "Desc."
},
{
"process": "P (pid 12345)",
"path": "explicit/zero1",
"kind": 1,
"units": 0,
"amount": 0,
"description": "Desc."
},
{
"process": "P (pid 12345)",
"path": "heap-allocated",
"kind": 2,
"units": 0,
"amount": 13000000,
"description": "Heap allocated."
},
{
"process": "webIsolated=https://example.com (pid 12345)",
"path": "explicit/a/b",
"kind": 1,
"units": 0,
"amount": 2000000,
"description": "Desc."
},
{
"process": "webIsolated=https://example.com (pid 12345)",
"path": "explicit/a/c/d",
"kind": 1,
"units": 0,
"amount": 3000000,
"description": "Desc."
},
{
"process": "webIsolated=https://example.com (pid 12345)",
"path": "heap-allocated",
"kind": 2,
"units": 0,
"amount": 12000000,
"description": "Heap allocated."
}
]
}
}
|