So I am using this stanza in my .../local props.conf
[mscs:storage:blob]
SHOULD_LINEMERGE = true
LINE_BREAKER: (,[\r\n]+\s+){
TRUNCATE = 0
KV_MODE = json
This works fine to parse my events like this
"time": "2018-07-09T16:14:21.3832528Z",
"resourceId": "blah",
"operationName": "blah blah",
"category": "blah",
"resultType": "blah",
"resultSignature": "blah",
"durationMs": 1234,
"callerIpAddress": "x.x.x.x",
"correlationId": "x-x-x-x-x",
"identity": {"blah blah":{"blah"}},
"level": "blah",
"location": "blah",
"properties": {"statusCode":"OK","serviceRequestId":"x-x-x"}
}
]
}
OR
"time": "2018-07-09T16:14:21.3832528Z",
"resourceId": "blah",
"operationName": "blah blah",
"category": "blah",
"resultType": "blah",
"resultSignature": "blah",
"durationMs": 1234,
"callerIpAddress": "x.x.x.x",
"correlationId": "x-x-x-x-x",
"identity": {"blah blah":{"blah"}},
"level": "blah",
"location": "blah",
"properties": {"statusCode":"OK","serviceRequestId":"x-x-x"}
}
,
{
Does anyone know how to drop the brackets and commas?
Thank you
... View more