Add trace_agg_tests/tests/data/test_data.json

This commit is contained in:
Mika 2025-12-08 15:56:29 +00:00
parent e1e3a6c462
commit ec0b133252

View file

@ -0,0 +1,17 @@
{
"input": [
{"event": "clocksource", "value": 10},
{"event": "clocksource", "value": 20},
{"event": "clocksource_switch", "value": 5},
{"event": "other_event", "value": 2},
{"event": "clocksource", "value": 12},
{"event": "clocksource_switch", "value": 8},
{"event": "clocksource", "value": 15},
{"event": "clocksource_switch", "value": 6}
],
"expected_output": {
"clocksource": 57,
"clocksource_switch": 19,
"other_event": 2
}
}