Hi, I have a json that looks like the following - { "id": "123", "uri": "http://xyz.com/api", "method": "POST", "headers": [ "Accept: application/json", "SERVICE.ENV: qa", "SERVICE.NAME: someservice", "CLIENT.ID: s0m3id", "CLIENT_TYPE: typeA", "CLIENT_IP:123.456.7.8" ], "cookies": [], "message": "Request Finished", "status": 200 } Within the headers section, I want to capture what all CLIENT_IPs are passing other header info such as SERVICE.ENV and SERVICE.NAME. The catch being, CLIENT_IP:123.456.7.8 is all in a single pair of quotes, so it isn't being parsed as a key value pair (as per my understanding). Please help.
... View more