Hi,
My stakeholders would like view events in the following JSON map log format, together in one record parsed out into separate fields:
"cookie": [{
"a": 1,
"b": 1,
"c": 1
}, {
"a": 2,
"b": 2,
"c": 2
}, {
"a": 3,
"b": 3,
"c": 3
}]
}
Desired report in Splunk :
a | b| c (header)
1 1 1
2 2 2
3 3 3
Is there a way to support this in Splunk?
If there is not an easy way, we can change the log structure. We wish to keep the information in JSON format, however (structuring log as a long string and regexing is not an option).
Thank you.
... View more