Add trace_agg/tests/data/sample_trace.json
This commit is contained in:
parent
bcfe946ef2
commit
08baa57645
1 changed files with 30 additions and 0 deletions
30
trace_agg/tests/data/sample_trace.json
Normal file
30
trace_agg/tests/data/sample_trace.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
[
|
||||
{
|
||||
"correlation_id": "case01",
|
||||
"had_sched_switch": 1,
|
||||
"had_irq": 0,
|
||||
"had_softirq": 1,
|
||||
"cpu_ids_seen": [0, 1]
|
||||
},
|
||||
{
|
||||
"correlation_id": "case02",
|
||||
"had_sched_switch": 0,
|
||||
"had_irq": 1,
|
||||
"had_softirq": 0,
|
||||
"cpu_ids_seen": [2]
|
||||
},
|
||||
{
|
||||
"correlation_id": "case03",
|
||||
"had_sched_switch": 1,
|
||||
"had_irq": 1,
|
||||
"had_softirq": 1,
|
||||
"cpu_ids_seen": [0, 1, 2]
|
||||
},
|
||||
{
|
||||
"correlation_id": "case04",
|
||||
"had_sched_switch": 0,
|
||||
"had_irq": 0,
|
||||
"had_softirq": 0,
|
||||
"cpu_ids_seen": [3]
|
||||
}
|
||||
]
|
||||
Loading…
Reference in a new issue