Please help me to transform this Json
{
"status": "success",
"data": {
"resultType": "matrix",
"result": [
{
"metric": {
"instance": "abc"
},
"values": [
[
1737087025,
"1449697924095"
],
[
1737087021,
"1449697924091"
]
]
},
{
"metric": {
"instance": "cab"
},
"values": [
[
1737087025,
"1449697924095"
],
[
1737087021,
"1449697924091"
]
]
}
]
}
}
into this output json
[ {
"instance":"abc",
"timestamp":1737087025
"value":"1449697924095"
},
{
"instance":"abc",
"timestamp":1737087021
"value":"1449697924091"
},
{
"instance":"cab",
"timestamp":1737087025
"value":"1449697924095"
},
{
"instance":"cab",
"timestamp":1737087021
"value":"1449697924091"
}
]
Please help me to transform this Json
{
"status": "success",
"data": {
"resultType": "matrix",
"result": [
{
"metric": {
"instance": "abc"
},
"values": [
[
1737087025,
"1449697924095"
],
[
1737087021,
"1449697924091"
]
]
},
{
"metric": {
"instance": "cab"
},
"values": [
[
1737087025,
"1449697924095"
],
[
1737087021,
"1449697924091"
]
]
}
]
}
}
into this output json
[ {
"instance":"abc",
"timestamp":1737087025
"value":"1449697924095"
},
{
"instance":"abc",
"timestamp":1737087021
"value":"1449697924091"
},
{
"instance":"cab",
"timestamp":1737087025
"value":"1449697924095"
},
{
"instance":"cab",
"timestamp":1737087021
"value":"1449697924091"
}
]