From 08baa57645bcae158e09f42d8701076d99a51df9 Mon Sep 17 00:00:00 2001 From: Mika Date: Wed, 14 Jan 2026 15:28:05 +0000 Subject: [PATCH] Add trace_agg/tests/data/sample_trace.json --- trace_agg/tests/data/sample_trace.json | 30 ++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 trace_agg/tests/data/sample_trace.json diff --git a/trace_agg/tests/data/sample_trace.json b/trace_agg/tests/data/sample_trace.json new file mode 100644 index 0000000..55bf919 --- /dev/null +++ b/trace_agg/tests/data/sample_trace.json @@ -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] + } +] \ No newline at end of file