esmf-org / esmf-profiler

ESMF Profiler application converts binary traces into a web based, dynamic report.
0 stars 2 forks source link

Create JSON data structure for transport layer #5

Closed ryanlong1004 closed 3 years ago

ryanlong1004 commented 3 years ago

Need a standard way of passing results from application to application.

JSON to start, CSV if needed down the road.

The JSON will represent the execution tree, nesting children in the 'children' array of each node.

ryanlong1004 commented 3 years ago

{ "root": { "id": "abcd", "region": 0, "pets": 8, "mean": 4.9307, "min": 0, "max": 0, "min_pet": 0, "max_pet": 0, "children": [ { "id": "abcd", "region": 0, "pets": 8, "mean": 4.9307, "min": 0, "max": 0, "min_pet": 0, "max_pet": 0, "children": ["etc", "etc", "etc"] } ] } }