Nifi处理器的JOLT规范

时间:2018-08-30 17:14:22

标签: json apache-nifi jolt

我有以下JSON输入

Match found
..
90804
90804
0

我想将其转换为以下内容。

1)在“事件”数组的每个对象中添加一个静态key:value。 2)从“事件”数组的每个对象中删除一个元素“类型”。 3)其余所有值在i / p和o / p中应相同。 “细节”是没有特定结构的对象。

{
  "events": [
    {
      "cluster_id": "0717-035521-puny598",
      "timestamp": 1535540053785,
      "type": "TERMINATING",
      "details": {
        "reason": {
          "code": "INACTIVITY",
          "parameters": {
            "inactivity_duration_min": "15"
          }
        }
      }
    },
    {
      "cluster_id": "0717-035521-puny598",
      "timestamp": 1535537117300,
      "type": "EXPANDED_DISK",
      "details": {
        "previous_disk_size": 29454626816,
        "disk_size": 136828809216,
        "free_space": 17151311872,
        "instance_id": "6cea5c332af94d7f85aff23e5d8cea37"
      }
    }
  ]
}

1 个答案:

答案 0 :(得分:1)

以下链式规格应该有效:

[
  {
    "operation": "default",
    "spec": {
      "events[]": {
        "*": {
          "new-key": "new-value"
        }
      }
    }
  },
  {
    "operation": "remove",
    "spec": {
      "events": {
        "*": {
          "type": ""
        }
      }
    }
  }
]