[
{
"cluster_id": "0125-175512-node489",
"custom_tag": {
"app_name": "testing1",
"total_time": 32
}
},
{
"cluster_id": "0125-175512-node489",
"custom_tag": {
"app_name": "testing2",
"total_time": 34
}
}
]
Я хочу, чтобы o / p было таким.
1) добавьте одно постоянное новое поле "new_addition" 2) скопируйте вложенное значение "custom_tag.app_name" на один уровень вверх. 3) скопировать вложенное значение «custom_tag.total_time» на один уровень вверх, но имя атрибута отличается от «time_to_fini sh».
Я не могу определить jolt-spe c для этого.
[
{
"cluster_id": "0125-175512-node489",
"app_name": "testing1",
"new_addition": "new const value",
"time_to_finish": 32,
"custom_tag": {
"app_name": "testing1",
"total_time": 32
}
},
{
"cluster_id": "0125-175512-node489",
"app_name": "testing2",
"new_addition": "new const value",
"time_to_finish": 34,
"custom_tag": {
"app_name": "testing2",
"total_time": 34
}
}
]