ts should be index (Unix time in milliseconds), column name is random string.
[
    {'ts': 1669246574000, 'value': '6.06'}, 
    {'ts': 1669242973000, 'value': '6.5'}
]
I would like to have the following output
DT index         SomeParam
1669242973000    6.5
1669246574000    6.06
Instead of
DT index    ts               SomeParam
0           1669242973000    6.5
1           1669246574000    6.06
