I have the entries below from different sessions:
sessionId="001" data="[{message=timing_stats, data=[{beginF=1550652.855, endF=1550719.130001}, {beginF=1565741, endF=1565787}, {beginF=1574747, endF=1574782}]}]"
sessionId="002" data="[{message=timing_stats, data=[{beginF=1510652.855, endF=1550719.1001}, {beginF=1865741.4500000002, endF=1565787.645}, {beginF=1974747.655, endF=1974782.6050000002}]}]"
What I want to do is to calculate `endF-beginF` for each object in the data array. In this case I would have `3` from the `session 001` and `3` from `session 002`. Then I would like to show the average of the six numbers in a graph. How would I accomplish this? -Thanks.
↧