Chrome DevTools CPU Profile — Node Tree with Sample Deltas (json)
The .cpuprofile shape V8 emits: a node tree with call frames, a samples array of node IDs and a parallel timeDeltas array, plus the synthesized (idle), (program) and (garbage collector) nodes. Counting those synthetic frames as application time is the classic misreading.
{
"nodes": [
{
"id": 1,
"callFrame": {
"functionName": "(root)",
"scriptId": "0",
"url": "",
"lineNumber": -1,
"columnNumber": -1
},
"hitCount": 0,
"children": [
2,
9
]
},
{
"id": 2,
"callFrame": {
"functionName": "handleCheckout",
"scriptId": "12",
"url": "file:///srv/app/routes/checkout.js",
"lineNumber": 41,
"columnNumber": 18
},
"hitCount": 118,
"children": [
3,
5,
7
]
},
{
"id": 3,
"callFrame": {
"functionName": "priceCart",
"scriptId": "12",
"url": "file:///srv/app/pricing.js",
"lineNumber": 88,
"columnNumber": 22
},
"hitCount": 402,
"children": [
4
]
},
{
"id": 4,
"callFrame": {Specifications
- Nodes
- 9
- Samples
- 20
- Time Deltas Count
- 20
- Has Idle Node
- true
- Has Garbage Collector Node
- true
- Time Unit
- microseconds
- Duration Microseconds
- 30000000
- Synthesized Frames
- (root), (idle), (program), (garbage collector)
Testing contract
Expected to pass- Scenario
- Convert the profile to folded stacks and compute self time per function.
- Expected result
- samples and timeDeltas are the same length, the four synthesized nodes are excluded from application self time, and applyDiscount comes out as the hottest real function.
What is a .json file?
JSON (JavaScript Object Notation) is a lightweight, text-based data-interchange format representing objects, arrays, strings, numbers, booleans, and null. It is language-independent, human-readable, and the dominant format for web APIs and configuration. It requires a single well-formed root value.
How to use this file
Use an example JSON file to test parsers and serializers, schema validation, Unicode and number-precision handling, and API request or response processing.
How to use this file for testing
“Chrome DevTools CPU Profile — Node Tree with Sample Deltas (json)” is a deterministic Novus Examples fixture for Observability, JSON parsing, Performance testing. Structured and plain-text telemetry with known timestamps, levels, request identifiers, and error states for testing log ingestion, correlation, dashboards, and alert pipelines.
Documented properties for this file: 9 nodes. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.
Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.
Telemetry fixtures use fixed trace IDs, span IDs, and timestamps so ingestion is reproducible run to run. Point your collector, parser, or query layer at the file and assert the documented span tree, metric families, or severity mix; service and host names are invented.
Code examples
import json
with open("chrome-devtools-cpuprofile.json") as f:
data = json.load(f)
print(type(data), len(data))Related files
- jsonOTLP Trace — 48-Span Linear Chain (json)A single-service trace 48 levels deep — a recursive GraphQL-style resolver where every span is the child of the one before it. A depth fixture for waterfall renderers, tree-layout code and any parser that recurses over parentage.

- jsonOTLP Trace — 60-Way Parallel Fan-Out (json)One root span with 60 overlapping children — a scatter-gather query across database shards. The counterpart to the deep-chain fixture: shallow but very wide, which is what breaks waterfall layouts that assume spans do not overlap in time.

- txtAllocation Profile — Folded Stacks Weighted in Bytes (txt)An allocation profile in the same folded syntax as the CPU profiles, but weighted in bytes rather than samples. The format carries no unit, so a viewer that assumes samples renders 65 MB of allocation as 68 million samples — which is what this fixture is for.

- txtCPU Profile — Folded Stacks After a Regression (txt)The same workload after a change: JSON decoding costs four times as much and gains a new reflect frame, while cache lookups get cheaper. Paired with the baseline so a differential flamegraph can be scored against a known regression and a known improvement.

- txtCPU Profile — Folded Stacks, Baseline (txt)A CPU profile in the folded-stack format every flamegraph tool reads: one line per unique stack, frames separated by semicolons, then a space and a sample count. Twelve stacks up to seven frames deep, with the runtime's GC and scheduler work included as real profiles have.

- txtHeap Profile — In-Use Bytes by Allocation Site (txt)A heap profile measuring bytes still live at the sample point, not bytes ever allocated — which is why its shape differs from the allocation profile of the same process. 620 MB retained across five sites, with an unbounded session cache at the top.

Generated by generation/observability.py. Free for any use, no attribution required — license.